mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-21 11:25:24 +00:00
See ChangeLog
Monotone-Parent: bdd11428b30ea8b34d0aab6d7ff6ef311b949890 Monotone-Revision: 8a33774ff55089b02c43fb1a6d1acfd98521c634 Monotone-Author: ludovic@Sophos.ca Monotone-Date: 2009-10-17T17:54:14 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2009-10-17 Ludovic Marcotte <lmarcotte@inverse.ca>
|
||||
|
||||
* UI/WebServerResources/UIxListEditor.js (endEditable):
|
||||
We use "uname" instead of "name" when reading back the
|
||||
values from the autocompletion code.
|
||||
|
||||
2009-10-16 Francis Lachapelle <flachapelle@inverse.ca>
|
||||
|
||||
* UI/WebServerResources/SchedulerUI.js (eventsListCallback): don't
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* SOGoContactGCSList.m - this file is part of SOGo
|
||||
*
|
||||
* Copyright (C) 2008 Inverse inc.
|
||||
* Copyright (C) 2008-2009 Inverse inc.
|
||||
*
|
||||
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
*
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* UIxListEditor.m - this file is part of SOGo
|
||||
*
|
||||
* Copyright (C) 2008 Inverse inc.
|
||||
* Copyright (C) 2008-2009 Inverse inc.
|
||||
*
|
||||
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
*
|
||||
|
||||
@@ -33,22 +33,23 @@ function endEditable (event, element) {
|
||||
if (element) {
|
||||
card = element.readAttribut("card");
|
||||
mail = element.readAttribute("mail");
|
||||
name = element.readAttribute("name");
|
||||
name = element.readAttribute("uname");
|
||||
}
|
||||
else {
|
||||
if ($(this).tagName == "INPUT") {
|
||||
element = this.ancestors ().first ();
|
||||
card = this.readAttribute ("card");
|
||||
name = this.readAttribute ("name");
|
||||
name = this.readAttribute ("uname");
|
||||
mail = this.readAttribute ("mail");
|
||||
}
|
||||
else {
|
||||
element = this;
|
||||
card = element.childElements ().first ().readAttribute ("card");
|
||||
mail = element.childElements ().first ().readAttribute ("mail");
|
||||
name = element.childElements ().first ().readAttribute ("name");
|
||||
name = element.childElements ().first ().readAttribute ("uname");
|
||||
}
|
||||
}
|
||||
|
||||
element.writeAttribute ("card", card);
|
||||
element.writeAttribute ("name", name);
|
||||
element.writeAttribute ("mail", mail);
|
||||
|
||||
Reference in New Issue
Block a user