docs(keywords): Add some keywords to checkbox/radio/toggle

This commit is contained in:
Adam Bradley
2014-03-28 16:00:56 -05:00
parent 203a014a40
commit 577d595dab
3 changed files with 6 additions and 6 deletions

View File

@@ -10,9 +10,9 @@ angular.module('ionic.ui.checkbox', [])
* @restrict E
* @codepen hqcju
* @description
* No different than the HTML checkbox input, except it's styled differently.
* The checkbox is no different than the HTML checkbox input, except it's styled differently.
*
* Behaves like any [AngularJS checkbox](http://docs.angularjs.org/api/ng/input/input[checkbox]).
* The checkbox behaves like any [AngularJS checkbox](http://docs.angularjs.org/api/ng/input/input[checkbox]).
*
* @usage
* ```html

View File

@@ -10,9 +10,9 @@ angular.module('ionic.ui.radio', [])
* @restrict E
* @codepen saoBG
* @description
* No different than the HTML radio input, except it's styled differently.
* The radio directive is no different than the HTML radio input, except it's styled differently.
*
* Behaves like any [AngularJS radio](http://docs.angularjs.org/api/ng/input/input[radio]).
* Radio behaves like any [AngularJS radio](http://docs.angularjs.org/api/ng/input/input[radio]).
*
* @usage
* ```html

View File

@@ -11,11 +11,11 @@ angular.module('ionic.ui.toggle', [])
* @restrict E
*
* @description
* An animated switch which binds a given model to a boolean.
* A toggle is an animated switch which binds a given model to a boolean.
*
* Allows dragging of the switch's nub.
*
* Behaves like any [AngularJS checkbox](http://docs.angularjs.org/api/ng/input/input[checkbox]) otherwise.
* The toggle behaves like any [AngularJS checkbox](http://docs.angularjs.org/api/ng/input/input[checkbox]) otherwise.
*
*/
.directive('ionToggle', ['$ionicGesture', '$timeout', function($ionicGesture, $timeout) {