@@ -184,8 +184,8 @@ export class SlideContainer extends AbsoluteLayout {
184
184
return ;
185
185
}
186
186
// Android Translucent bars API >= 19 only
187
- if ( app . android && this . androidTranslucentStatusBar === true || this . _androidTranslucentNavBar === true && Platform . device . sdkVersion >= '19' ) {
188
187
188
+ if ( app . android && this . androidTranslucentStatusBar === true || this . _androidTranslucentNavBar === true && Platform . device . sdkVersion >= '19' ) {
189
189
let window = app . android . startActivity . getWindow ( ) ;
190
190
191
191
// check for status bar
@@ -219,6 +219,7 @@ export class SlideContainer extends AbsoluteLayout {
219
219
220
220
this . currentPanel = this . buildSlideMap ( slides ) ;
221
221
this . currentPanel . panel . translateX = - this . pageWidth ;
222
+
222
223
if ( this . disablePan === false ) {
223
224
this . applySwipe ( this . pageWidth ) ;
224
225
}
@@ -232,6 +233,7 @@ export class SlideContainer extends AbsoluteLayout {
232
233
view . width = this . pageWidth ;
233
234
}
234
235
} ) ;
236
+
235
237
if ( this . disablePan === false ) {
236
238
this . applySwipe ( this . pageWidth ) ;
237
239
}
@@ -309,7 +311,8 @@ export class SlideContainer extends AbsoluteLayout {
309
311
this . transitioning = false ;
310
312
this . currentPanel . panel . off ( 'pan' ) ;
311
313
this . currentPanel = panel ;
312
- if ( this . disablePan == false ) {
314
+
315
+ if ( this . disablePan === false ) {
313
316
this . applySwipe ( this . pageWidth ) ;
314
317
}
315
318
this . setActivePageIndicator ( this . currentPanel . index ) ;
0 commit comments