diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-12-03 00:35:58 -0500 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-12-03 00:35:58 -0500 |
| commit | 50470ee07e3a6d4afdf3e00724ebb1bdaf351ba0 (patch) | |
| tree | 6c7d1a6db8acd850cbbc749e02317a948cf602c0 /StoneIsland/platforms/ios/www/plugins/cordova-plugin-splashscreen | |
| parent | e760f95dc843cf11367d1aea0ed832991964584a (diff) | |
latlng
Diffstat (limited to 'StoneIsland/platforms/ios/www/plugins/cordova-plugin-splashscreen')
| -rw-r--r-- | StoneIsland/platforms/ios/www/plugins/cordova-plugin-splashscreen/www/splashscreen.js | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/StoneIsland/platforms/ios/www/plugins/cordova-plugin-splashscreen/www/splashscreen.js b/StoneIsland/platforms/ios/www/plugins/cordova-plugin-splashscreen/www/splashscreen.js new file mode 100644 index 00000000..0e6a10af --- /dev/null +++ b/StoneIsland/platforms/ios/www/plugins/cordova-plugin-splashscreen/www/splashscreen.js @@ -0,0 +1,35 @@ +cordova.define("cordova-plugin-splashscreen.SplashScreen", function(require, exports, module) { /* + * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + * +*/ + +var exec = require('cordova/exec'); + +var splashscreen = { + show:function() { + exec(null, null, "SplashScreen", "show", []); + }, + hide:function() { + exec(null, null, "SplashScreen", "hide", []); + } +}; + +module.exports = splashscreen; + +}); |
