mirror of
https://github.com/apache/cordova-plugin-splashscreen.git
synced 2026-04-14 00:01:34 +08:00
Add tentative Tizen implementation.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
var exec = require('cordova/exec');
|
||||
|
||||
module.exports = {
|
||||
splashscreen: {
|
||||
show = function() {
|
||||
exec(null, null, "SplashScreen", "show", []);
|
||||
},
|
||||
hide = function() {
|
||||
exec(null, null, "SplashScreen", "hide", []);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
require("cordova/tizen/commandProxy").add("SplashScreen", module.exports);
|
||||
Reference in New Issue
Block a user