Commit be56120d by Sebastián Katzer

Empty method body for update() on windows

parent 9b0f037f
...@@ -78,6 +78,20 @@ exports.schedule = function (success, error, args) { ...@@ -78,6 +78,20 @@ exports.schedule = function (success, error, args) {
}; };
/** /**
* Update notifications.
*
* @param [ Function ] success Success callback
* @param [ Function ] error Error callback
* @param [ Array ] args Interface arguments
*
* @return [ Void ]
*/
exports.schedule = function (success, error, args) {
console.warn('LocalNotification#update is not implemented.');
success();
};
/**
* Clear the notifications specified by id. * Clear the notifications specified by id.
* *
* @param [ Function ] success Success callback * @param [ Function ] success Success callback
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment