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:
Francis Lachapelle
2011-04-11 20:27:24 +00:00
parent f41ab295bc
commit ed88f7f3ab
2 changed files with 7 additions and 1 deletions
+6
View File
@@ -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.
+1 -1
View File
@@ -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++) {