Release version 0.2.1

This commit is contained in:
Sebastián Katzer
2013-10-09 14:54:23 +02:00
parent dbc16ce72d
commit a3ed0f61fa
5 changed files with 28 additions and 30 deletions

View File

@@ -18,8 +18,8 @@ BackgroundMode.prototype = {
*
* Aktiviert den Hintergrundmodus.
*/
activate: function () {
cordova.exec(null, null, 'BackgroundMode', 'activate', []);
enable: function () {
cordova.exec(null, null, 'BackgroundMode', 'enable', []);
},
/**
@@ -27,8 +27,8 @@ BackgroundMode.prototype = {
*
* Deaktiviert den Hintergrundmodus
*/
deactivate: function () {
cordova.exec(null, null, 'BackgroundMode', 'deactivate', []);
disable: function () {
cordova.exec(null, null, 'BackgroundMode', 'disable', []);
}
};