Monotone-Parent: fc9e1cf3f4988bae25443b6d072add3f344d30f0

Monotone-Revision: 5444115146b03d377270a0ee98d9e240781fcc6e

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2012-04-24T15:32:10
This commit is contained in:
Wolfgang Sourdeau
2012-04-24 15:32:10 +00:00
parent c774314b1b
commit 781f3fbf7e
2 changed files with 6 additions and 1 deletions

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:):

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;