Commit ec62018a by Sebastián Katzer

Re-add `add` as deprecated alias for `schedule`

parent ab8e6643
...@@ -30,7 +30,7 @@ var exec = require('cordova/exec'), ...@@ -30,7 +30,7 @@ var exec = require('cordova/exec'),
*************/ *************/
/** /**
* Returns the default settings * Returns the default settings.
* *
* @return {Object} * @return {Object}
*/ */
...@@ -39,7 +39,7 @@ exports.getDefaults = function () { ...@@ -39,7 +39,7 @@ exports.getDefaults = function () {
}; };
/** /**
* Overwrite default settings * Overwrite default settings.
* *
* @param {Object} defaults * @param {Object} defaults
*/ */
...@@ -423,17 +423,25 @@ exports.registerPermission = function (callback, scope) { ...@@ -423,17 +423,25 @@ exports.registerPermission = function (callback, scope) {
exec(fn, null, 'LocalNotification', 'registerPermission', []); exec(fn, null, 'LocalNotification', 'registerPermission', []);
}; };
/****************
* DEPRECATIONS *
****************/
/** /**
* @deprecated * Schedule a new local notification.
* */
* Register permission to show notifications if not already granted. exports.add = function () {
* console.warn('Depreated: Please use `notification.local.schedule` instead.');
* @param {Function} callback
* The function to be exec as the callback exports.schedule.apply(this, arguments);
* @param {Object?} scope };
* The callback function's scope
/**
* Register permission to show notifications
* if not already granted.
*/ */
exports.promptForPermission = function (callback, scope) { exports.promptForPermission = function () {
console.warn('Depreated: Please use `notification.local.registerPermission` instead.'); console.warn('Depreated: Please use `notification.local.registerPermission` instead.');
exports.registerPermission.apply(this, arguments); exports.registerPermission.apply(this, arguments);
......
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