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