mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-21 11:25:24 +00:00
See ChangeLog.
Monotone-Parent: 97250aea91a2d83b86c85ef8498979d4f758ba55 Monotone-Revision: 9ad26f9553c4800488d1baf29bf4bb97c6827456 Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2011-04-11T20:27:24 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2011-04-11 Francis Lachapelle <flachapelle@inverse.ca>
|
||||
|
||||
* UI/WebServerResources/UIxMailToSelection.js
|
||||
(addressFieldLostFocus): split content separated by commas
|
||||
or semi-colons.
|
||||
|
||||
2011-04-08 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* Tests/Unit/TestNSString+URLEscaping.m: new test module.
|
||||
|
||||
@@ -140,7 +140,7 @@ function addressFieldGotFocus(event) {
|
||||
function addressFieldLostFocus(event) {
|
||||
lastIndex = getIndexFromIdentifier(this.id);
|
||||
|
||||
var addresses = this.value.split(',');
|
||||
var addresses = this.value.split(/[,;]/);
|
||||
if (addresses.length > 0) {
|
||||
var first = true;
|
||||
for (var i = 0; i < addresses.length; i++) {
|
||||
|
||||
Reference in New Issue
Block a user