cordova-plugin-blurred-snapshot
Version:
Cordova Plugin for blurring app when it will resign active and removes it when app did become active.
8 lines (7 loc) • 354 B
JavaScript
var exec = require('cordova/exec');
exports.addBlurredSnapshot = function(arg0, success, error) {
exec(success, error, "cordova-plugin-blurred-snapshot", "addBlurredSnapshot", [arg0]);
};
exports.removeBlurredSnapshot = function(arg0, success, error) {
exec(success, error, "cordova-plugin-blurred-snapshot", "removeBlurredSnapshot", [arg0]);
};