Skip to content

Commit

Permalink
fix(slideBox): make does-continue attribute work continuously
Browse files Browse the repository at this point in the history
Closes #575
  • Loading branch information
ajoslin committed Feb 26, 2014
1 parent 8354d42 commit f6ec6a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/ext/angular/test/slideBox.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<ion-side-menus>
<ion-pane ion-side-menu-content>
<ion-header-bar left-buttons="leftButtons" right-buttons="rightButtons" title=""></ion-header-bar>
<ion-slide-box on-slide-changed="slideChanged(index)">
<ion-slide-box on-slide-changed="slideChanged(index)" does-continue="true">
<ion-slide ng-controller="FirstSlideCtrl">
<h3>Thank you for choosing the Awesome App!</h3>
<div id="logo">
Expand Down
2 changes: 1 addition & 1 deletion js/views/sliderView.js
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ ionic.views.Slider = ionic.views.View.inherit({

function stop() {

delay = 0;
delay = options.auto || 0;
clearTimeout(interval);

}
Expand Down

0 comments on commit f6ec6a3

Please sign in to comment.