From d7c6470d3820094380c5e89c139ec7a63faf6419 Mon Sep 17 00:00:00 2001 From: Andy Joslin Date: Mon, 10 Mar 2014 12:02:38 -0600 Subject: [PATCH] style(ionicList): add semicolon --- js/ext/angular/src/directive/ionicList.js | 26 +++++++++++------------ 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/js/ext/angular/src/directive/ionicList.js b/js/ext/angular/src/directive/ionicList.js index 148250af89..cc6a708bbe 100644 --- a/js/ext/angular/src/directive/ionicList.js +++ b/js/ext/angular/src/directive/ionicList.js @@ -11,7 +11,7 @@ angular.module('ionic.ui.list', ['ngAnimate']) * @parent ionList * * @description - * The ionItem directive creates a list-item that can easily be swiped, + * The ionItem directive creates a list-item that can easily be swiped, * deleted, reordered, edited, and more. * * @usage @@ -19,16 +19,16 @@ angular.module('ionic.ui.list', ['ngAnimate']) * * * * * ``` * * @param {string=} item-type The type of this item. See [the list CSS page](/docs/components/#list) for available item types. - * @param {expression=} option-buttons The option buttons to show when swiping the item to the left (if swiping is enabled). Defaults to the ionList parent's option-buttons setting. The format of each button object is: + * @param {expression=} option-buttons The option buttons to show when swiping the item to the left (if swiping is enabled). Defaults to the ionList parent's option-buttons setting. The format of each button object is: * ```js - * { + * { * text: 'Edit', * type: 'Button', * onTap: function(item) {} @@ -141,22 +141,22 @@ angular.module('ionic.ui.list', ['ngAnimate']) * * @description * The List is a widely used interface element in almost any mobile app, - * and can include content ranging from basic text all the way to buttons, + * and can include content ranging from basic text all the way to buttons, * toggles, icons, and thumbnails. * * Both the list, which contains items, and the list items themselves can be - * any HTML element. The containing element requires the list class and each + * any HTML element. The containing element requires the list class and each * list item requires the item class. Ionic also comes with pre-built Angular * directives to make it easier to create a complex list. - * - * Using the ionList and {@link ionic.directive:ionItem ionItem} directives + * + * Using the ionList and {@link ionic.directive:ionItem ionItem} directives * make it easy to support various interaction modes such as swipe to edit, - * drag to reorder, and removing items. + * drag to reorder, and removing items. * * However, if you need just a simple list you won't be required to use the - * directives, but rather just use the classnames. + * directives, but rather just use the classnames. * This demo is a simple list without using the directives. - * + * * See the {@link ionic.directive:ionItem ionItem documentation} for more information on list items. * * @usage @@ -172,7 +172,7 @@ angular.module('ionic.ui.list', ['ngAnimate']) * @param {function()=} on-reorder Called when a child item is reordered. * @param {boolean=} show-delete Whether to show each item delete button. * @param {boolean=} show-reoder Whether to show each item's reorder button. - * @param {boolean=} can-delete Whether child items are able to be deleted or not. + * @param {boolean=} can-delete Whether child items are able to be deleted or not. * @param {boolean=} can-reorder Whether child items can be reordered or not. * @param {boolean=} can-swipe Whether child items can be swiped to reveal option buttons. * @param {string=} delete-icon The class name of the icon to show on child items while deleting. Defaults to `ion-minus-circled`. @@ -241,6 +241,6 @@ angular.module('ionic.ui.list', ['ngAnimate']) } }; -}]) +}]); })();