Hi,
I am new on a project that uses Ionic, Cordova and AngularJS to create a web site that must be compatible with all major browsers. One of our template uses a “Slide Box” inside an “ion-view” :
<ion-view title='<div class="top-logo"></div>'>
<ion-content class="has-header">
<div class="has-header ionic-pseudo">
...
</div>
<div class="large-padding">
<div class="button-bar bar-silver-light" id="event-nav">
<a ...>...</a>
<a ...>...</a>
</div>
<ion-slide-box on-slide-changed="slideHasChanged($index)" auto-play="false" does-continue="false" show-pager="false">
<ion-slide>
<div>...</div>
</ion-slide>
<ion-slide>
<div>...</div>
</ion-slide>
</ion-slide-box>
</ion-content>
It works great on Chrome and we have decided not to support IE9 but we need it to work on IE11 and currently, the display of the two slides is good but the swipe movement doesn’t change the current slide on IE11 as it does on Chrome.
I am new to Ionic, could you please help find why can be missing ?
Thanks and regards,
Claude