浏览代码

Check if function is provided

Sebastián Katzer 10 年之前
父节点
当前提交
3afb598550
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      www/local-notification-core.js

+ 3 - 0
www/local-notification-core.js

@@ -441,6 +441,9 @@ exports.registerPermission = function (callback, scope) {
  */
 exports.on = function (event, callback, scope) {
 
+    if (typeof callback !== "function")
+        return;
+
     if (!this._listener[event]) {
         this._listener[event] = [];
     }