Hi guys,
I have a issue to run the slidebox on my device using the latest build (1.0.0-beta.13-nightly-746),
tested it works on browser but not on my Samsung galaxy note 3 (android ver.4.4.2).
The page will freeze at the first slide and I can not slide it to the next page, I deploy the same code into early build (1.0.0-beta.13 Lanthanum Leopard), everything looks fine but just a little bit of leggy.
HTML code:
Just simple slidebox docuemtn like this: http://ionicframework.com/docs/api/directive/ionSlideBox/
Code for controller:
angular.module(‘myApp’).controller(‘IntroCtrl’, function ($socpe, $ionicSlideBoxDelegate) {
// Called each time the slide changes
$scope.slideHasChanged = function (index) {
console.log(index);
$scope.slideIndex = index;
};