mirror of
https://bitbucket.org/TheBosZ/cordova-plugin-run-in-background
synced 2024-11-14 19:44:53 +00:00
Allow at least enable: on other platforms
This commit is contained in:
parent
379e9228fb
commit
92eb50de9e
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user