propagate from branch 'ca.inverse.sogo.1_3_15' (head 5444115146b03d377270a0ee98d9e240781fcc6e)

to branch 'ca.inverse.sogo' (head 1a1393f78ba372cce09b37d46908cc3e7553d869)

Monotone-Parent: 1a1393f78ba372cce09b37d46908cc3e7553d869
Monotone-Parent: 5444115146b03d377270a0ee98d9e240781fcc6e
Monotone-Revision: bc199d3fb5947e961f9d63c20b6f2d472cdaff0d

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2012-04-24T15:32:14
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2012-04-24 15:32:14 +00:00
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -1,3 +1,8 @@
2012-04-24 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/WebServerResources/generic.js (clickEventWrapper): pass the
value of "this" to the invoked callback.
2012-04-24 Ludovic Marcotte <lmarcotte@inverse.ca>
* SOPE/GDLContentStore/GCSFolder.m (-writeContent:toName:baseVersion:):
+1 -1
View File
@@ -50,7 +50,7 @@ var emailRE = /^([\w\!\#$\%\&\'\*\+\-\/\=\?\^\`{\|\}\~]+\.)*[\w\!\#$\%\&\'\*\+\-
function clickEventWrapper(functionRef) {
function button_clickEventWrapper(event) {
preventDefault(event);
return functionRef(event);
return functionRef.apply(this, [event]);
}
return button_clickEventWrapper;