mirror of
https://github.com/apache/cordova-plugin-statusbar.git
synced 2025-02-07 15:22:54 +08:00
cleaned up js, removed unused requires, removed unused 'new' object function and defined directly
This commit is contained in:
parent
3d5ed0a4f1
commit
bdbaf12959
@ -17,13 +17,11 @@
|
|||||||
* specific language governing permissions and limitations
|
* specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var argscheck = require('cordova/argscheck'),
|
var exec = require('cordova/exec');
|
||||||
utils = require('cordova/utils'),
|
|
||||||
exec = require('cordova/exec');
|
|
||||||
|
|
||||||
var namedColors = {
|
var namedColors = {
|
||||||
"black": "#000000",
|
"black": "#000000",
|
||||||
"darkGray": "#A9A9A9",
|
"darkGray": "#A9A9A9",
|
||||||
"lightGray": "#D3D3D3",
|
"lightGray": "#D3D3D3",
|
||||||
@ -38,46 +36,46 @@
|
|||||||
"orange": "##FFA500",
|
"orange": "##FFA500",
|
||||||
"purple": "#800080",
|
"purple": "#800080",
|
||||||
"brown": "#A52A2A"
|
"brown": "#A52A2A"
|
||||||
};
|
};
|
||||||
|
|
||||||
// prime it
|
// prime it
|
||||||
|
exec(function (res) {
|
||||||
exec(function (res) {
|
|
||||||
StatusBar.isVisible = res;
|
StatusBar.isVisible = res;
|
||||||
}, null, "StatusBar", "_ready", []);
|
}, null, "StatusBar", "_ready", []);
|
||||||
|
|
||||||
var StatusBar = function () {
|
var StatusBar = {
|
||||||
};
|
|
||||||
|
|
||||||
StatusBar.overlaysWebView = function (doOverlay) {
|
isVisible: true,
|
||||||
|
|
||||||
|
overlaysWebView: function (doOverlay) {
|
||||||
exec(null, null, "StatusBar", "overlaysWebView", [doOverlay]);
|
exec(null, null, "StatusBar", "overlaysWebView", [doOverlay]);
|
||||||
};
|
},
|
||||||
|
|
||||||
StatusBar.styleDefault = function () {
|
styleDefault: function () {
|
||||||
// dark text on a light background
|
// dark text ( to be used on a light background )
|
||||||
exec(null, null, "StatusBar", "styleDefault", []);
|
exec(null, null, "StatusBar", "styleDefault", []);
|
||||||
};
|
},
|
||||||
|
|
||||||
StatusBar.styleLightContent = function () {
|
styleLightContent: function () {
|
||||||
// light text on a dark background
|
// light text ( to be used on a dark background )
|
||||||
exec(null, null, "StatusBar", "styleLightContent", []);
|
exec(null, null, "StatusBar", "styleLightContent", []);
|
||||||
};
|
},
|
||||||
|
|
||||||
StatusBar.styleBlackTranslucent = function () {
|
styleBlackTranslucent: function () {
|
||||||
// #88000000 ? Apple says to use lightContent instead
|
// #88000000 ? Apple says to use lightContent instead
|
||||||
exec(null, null, "StatusBar", "styleBlackTranslucent", []);
|
exec(null, null, "StatusBar", "styleBlackTranslucent", []);
|
||||||
};
|
},
|
||||||
|
|
||||||
StatusBar.styleBlackOpaque = function () {
|
styleBlackOpaque: function () {
|
||||||
// #FF000000 ? Apple says to use lightContent instead
|
// #FF000000 ? Apple says to use lightContent instead
|
||||||
exec(null, null, "StatusBar", "styleBlackOpaque", []);
|
exec(null, null, "StatusBar", "styleBlackOpaque", []);
|
||||||
};
|
},
|
||||||
|
|
||||||
StatusBar.backgroundColorByName = function (colorname) {
|
backgroundColorByName: function (colorname) {
|
||||||
return StatusBar.backgroundColorByHexString(namedColors[colorname]);
|
return StatusBar.backgroundColorByHexString(namedColors[colorname]);
|
||||||
}
|
},
|
||||||
|
|
||||||
StatusBar.backgroundColorByHexString = function (hexString) {
|
backgroundColorByHexString: function (hexString) {
|
||||||
if (hexString.indexOf("#") < 0) {
|
if (hexString.indexOf("#") < 0) {
|
||||||
hexString = "#" + hexString;
|
hexString = "#" + hexString;
|
||||||
}
|
}
|
||||||
@ -88,18 +86,18 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
exec(null, null, "StatusBar", "backgroundColorByHexString", [hexString]);
|
exec(null, null, "StatusBar", "backgroundColorByHexString", [hexString]);
|
||||||
}
|
},
|
||||||
|
|
||||||
StatusBar.hide = function () {
|
hide: function () {
|
||||||
exec(null, null, "StatusBar", "hide", []);
|
exec(null, null, "StatusBar", "hide", []);
|
||||||
StatusBar.isVisible = false;
|
StatusBar.isVisible = false;
|
||||||
}
|
},
|
||||||
|
|
||||||
StatusBar.show = function () {
|
show: function () {
|
||||||
exec(null, null, "StatusBar", "show", []);
|
exec(null, null, "StatusBar", "show", []);
|
||||||
StatusBar.isVisible = true;
|
StatusBar.isVisible = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
StatusBar.isVisible = true;
|
};
|
||||||
|
|
||||||
module.exports = StatusBar;
|
module.exports = StatusBar;
|
||||||
|
Loading…
Reference in New Issue
Block a user