Explorar el Código

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

Sebastián Katzer hace 8 años
padre
commit
8e8bc0b8f8
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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);
 };
 
 /**