mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-21 14:22:44 +00:00
Monotone-Parent: fc9e1cf3f4988bae25443b6d072add3f344d30f0
Monotone-Revision: 5444115146b03d377270a0ee98d9e240781fcc6e Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2012-04-24T15:32:10
This commit is contained in:
@@ -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:):
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user