File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 64
64
65
65
if ( this . isAndroid ( ) && version < 4.4 ) {
66
66
this . grade = ( version < 4 ? 'c' : 'b' ) ;
67
- }
67
+ }
68
68
}
69
69
}
70
70
} ,
160
160
161
161
showStatusBar : function ( val ) {
162
162
// Only useful when run within cordova
163
- this . showStatusBar = val ;
163
+ this . _showStatusBar = val ;
164
164
this . ready ( function ( ) {
165
165
// run this only when or if the platform (cordova) is ready
166
- if ( ionic . Platform . showStatusBar ) {
166
+ if ( ionic . Platform . _showStatusBar ) {
167
167
// they do not want it to be full screen
168
168
StatusBar . show ( ) ;
169
169
document . body . classList . remove ( 'status-bar-hide' ) ;
203
203
// setup listeners to know when the device is ready to go
204
204
function onWindowLoad ( ) {
205
205
if ( ionic . Platform . isCordova ( ) ) {
206
- // the window and scripts are fully loaded, and a cordova/phonegap
206
+ // the window and scripts are fully loaded, and a cordova/phonegap
207
207
// object exists then let's listen for the deviceready
208
208
document . addEventListener ( "deviceready" , onPlatformReady , false ) ;
209
209
} else {
You can’t perform that action at this time.
0 commit comments