Files
phonegap-plugins/iPhone/SplashScreen/SplashScreen.js
2011-01-10 23:19:32 +01:00

24 lines
501 B
JavaScript

/*
* SplashScreen.js
*
* Created by André Fiedler on 07.01.11.
* Copyright 2011 André Fiedler, <fiedler.andre at gmail dot com>
* MIT licensed
*/
function SplashScreen() {}
SplashScreen.prototype.show = function() {
PhoneGap.exec('SplashScreen.show');
};
SplashScreen.prototype.hide = function() {
PhoneGap.exec('SplashScreen.hide');
};
PhoneGap.addConstructor(function() {
if(!window.plugins) {
window.plugins = {};
}
window.plugins.splashScreen = new SplashScreen();
});