This API is available on Firefox OS for internal applications only.
The MozPowerManager.removeWakeLockListener()
method is used to remove a handler previously set with addWakeLockListener()
.
Syntax
MozPowerManager.removeWakeLockListener(handler);
Parameters
handler
- A callback function previously set with
addWakeLockListener
.
Example
function logTheStateOnce(name, state) { console.log("The lock state for the resource '" + name + "' is: " + stat); navigator.mozPower.removeWakeLockListener(logTheStateOnce); } navigator.mozPower.addWakeLockListener(logTheStateOnce);
Specifications
Not part of any specification.