You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by pu...@apache.org on 2012/04/06 03:20:43 UTC

[40/40] git commit: capture undefined

capture undefined


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/commit/c49de580
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/tree/c49de580
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/diff/c49de580

Branch: refs/heads/master
Commit: c49de5801e760a84f71c3ca55b48046852d0f306
Parents: e16f33a
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Thu Feb 23 19:32:25 2012 -0800
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Thu Feb 23 19:32:25 2012 -0800

----------------------------------------------------------------------
 lib/cordova.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/c49de580/lib/cordova.js
----------------------------------------------------------------------
diff --git a/lib/cordova.js b/lib/cordova.js
index 2586d5a..1059cbb 100644
--- a/lib/cordova.js
+++ b/lib/cordova.js
@@ -42,7 +42,7 @@ window.addEventListener = function(evt, handler, capture) {
   }
 };
 
-document.removeEventListener = function(evt, handler) {
+document.removeEventListener = function(evt, handler, capture) {
   var e = evt.toLowerCase();
   // If unsubcribing from an event that is handled by a plugin
   if (typeof documentEventHandlers[e] != "undefined") {