Allow at least enable: on other platforms

This commit is contained in:
Sebastián Katzer 2014-11-11 21:35:26 +01:00
parent 379e9228fb
commit 92eb50de9e

View File

@ -76,10 +76,9 @@ exports.disable = function () {
exports.configure = function (options) {
var settings = this.mergeWithDefaults(options || {});
if (device.platform != 'Android')
return;
cordova.exec(null, null, 'BackgroundMode', 'configure', [settings]);
if (device.platform == 'Android') {
cordova.exec(null, null, 'BackgroundMode', 'configure', [settings]);
}
if (settings.enable) {
this.enable();