浏览代码

This.core.registerActionGroup is not a function [fixes #1438]

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

+ 1 - 1
www/local-notification.js

@@ -266,7 +266,7 @@ exports.getTriggered = function (callback, scope) {
  * @return [ Void ]
  */
 exports.addActionGroup = function (id, actions, callback, scope) {
-    this.core.registerActionGroup(id, actions, callback, scope);
+    this.core.addActionGroup(id, actions, callback, scope);
 };
 
 /**