docs(ionSlideBox): fix typos

This commit is contained in:
Andrew
2014-10-08 17:05:47 -06:00
parent 358bdc7680
commit 8f34cdbd7f

View File

@@ -13,9 +13,7 @@
*
* @usage
* ```html
* <ion-slide-box on-slide-changed="slideHasChanged($index)"
* loop="shouldLoop"
* auto-play="3000">
* <ion-slide-box on-slide-changed="slideHasChanged($index)" loop="shouldLoop" auto-play="3000">
* <ion-slide>
* <div class="box blue"><h1>BLUE</h1></div>
* </ion-slide>
@@ -29,7 +27,6 @@
* ```
*
* @param {expression=} selected A model bound to the selected slide index.
* with {@link ionic.service:$ionicSlideBoxDelegate}.
* @param {boolean=} loop Whether the slide box should loop. Default false.
* @param {number=} auto-play If a positive number, then every time the given number of milliseconds have passed, slideBox will go to the next slide. Set to a non-positive number to disable. Default: -1.
* @param {expression=} on-slide-changed Expression called whenever the slide is changed. Is passed an '$index' variable.