summaryrefslogtreecommitdiff
path: root/www/js/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'www/js/app.js')
-rw-r--r--www/js/app.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/www/js/app.js b/www/js/app.js
new file mode 100644
index 00000000..09d5d48b
--- /dev/null
+++ b/www/js/app.js
@@ -0,0 +1,24 @@
+// Ionic Starter App
+
+// angular.module is a global place for creating, registering and retrieving Angular modules
+// 'starter' is the name of this angular module example (also set in a <body> attribute in index.html)
+// the 2nd parameter is an array of 'requires'
+angular.module('starter', ['ionic'])
+
+.run(function($ionicPlatform) {
+ $ionicPlatform.ready(function() {
+ if(window.cordova && window.cordova.plugins.Keyboard) {
+ // Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
+ // for form inputs)
+ cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
+
+ // Don't remove this line unless you know what you are doing. It stops the viewport
+ // from snapping when text inputs are focused. Ionic handles this internally for
+ // a much nicer keyboard experience.
+ cordova.plugins.Keyboard.disableScroll(true);
+ }
+ if(window.StatusBar) {
+ StatusBar.styleDefault();
+ }
+ });
+})