2013-11-19 12:43:12 +02:00
|
|
|
var exec = require('cordova/exec');
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
|
splashscreen: {
|
2013-11-19 12:55:35 +02:00
|
|
|
win: null,
|
|
|
|
|
|
2013-11-19 13:11:32 +02:00
|
|
|
show: function() {
|
2013-11-19 12:55:35 +02:00
|
|
|
win= window.open('splashscreen.html');
|
2013-11-19 12:43:12 +02:00
|
|
|
},
|
2013-11-19 12:55:35 +02:00
|
|
|
|
2013-11-19 13:11:32 +02:00
|
|
|
hide: function() {
|
2013-11-19 12:55:35 +02:00
|
|
|
win.close();
|
|
|
|
|
win = null;
|
2013-11-19 12:43:12 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
require("cordova/tizen/commandProxy").add("SplashScreen", module.exports);
|