diff options
author | portix <portix@gmx.net> | 2013-02-27 02:43:43 +0100 |
---|---|---|
committer | portix <portix@gmx.net> | 2013-02-27 02:43:43 +0100 |
commit | bae4b8f78ff3ece1e926bfb386b6918743132e53 (patch) | |
tree | f77e77038607f2ac5c9ad9e8a1b6d1ca5771bbf4 /scripts | |
parent | ce38b37da1fadbca561439d1a8a22c3abf217d70 (diff) | |
download | dwb-bae4b8f78ff3ece1e926bfb386b6918743132e53.zip |
Fixing ignored '@'-shortcut; return value from function.debug; util.dispatchEvent
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/lib/dwb.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/lib/dwb.js b/scripts/lib/dwb.js index f0ee0b75..11ebb69f 100644 --- a/scripts/lib/dwb.js +++ b/scripts/lib/dwb.js @@ -228,7 +228,7 @@ return function() { try { - this.apply(this, arguments); + return this.apply(this, arguments); } catch (e) { @@ -237,6 +237,7 @@ else io.debug(e); } + return undefined; }.bind(this); } }); |