Explorar el Código

Added "add" event on Windows

Sebastián Katzer hace 8 años
padre
commit
79d2eb755d
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. 4 0
      src/windows/LocalNotificationProxy.js

+ 4 - 0
src/windows/LocalNotificationProxy.js

@@ -94,6 +94,10 @@ exports.schedule = function (success, error, args) {
 
     impl.schedule(options);
 
+    for (i = 0; i < options.length; i++) {
+        exports.fireEvent('add', options[i]);
+    }
+
     success();
 };