This is a fork of the PhoneGap/Cordova plugin for enabling/disabling screen dim from alunny. Modifications were made to make it hopefully compliant with PhoneGap Build for all to use. Namespace was changed, as I hope to extend this, and wasn't sure on alunny's intention with the original plugin.
<script src="cordova.js"></script>
<script src="screendim.js"></script>
<script>
// turn off the default screen dimming
document.getElementById('turnoff').addEventListener('touchstart', function (e) {
cordova.screenDim.disable();
});
// turn it back on
document.getElementById('turnon').addEventListener('touchstart', function (e) {
cordova.screenDim.enable();
});
// toggle it
document.getElementById('toggle').addEventListener('touchstart', function (e) {
cordova.screenDim.toggle();
});
</script>
Use pluginstall
- https://github.com/alunny/pluginstall
Mobile devices typically have an idle timer - a time limit when the screen will start to dim to conserve power.
By default this is a good thing - you don't want any old app keeping your screen on and killing your power. However, in certain cases you may want to disable this dimmer - for example, if you have a chess game where the user would be expected to think about her move, without touching the screen, for some extended period of time.
This plugin should be used for that purpose - disable the screen dimmer for some part of your app, and enable it again once you're done.
- iOS
- Android
MIT