From c8a3d0564d280e7342550ff7ad362ac935f5b0f4 Mon Sep 17 00:00:00 2001 From: Tasos Bekos Date: Fri, 10 Jan 2014 11:19:33 +0100 Subject: [PATCH] chore(demo): fix `eye` icon for watched attributes --- src/datepicker/docs/readme.md | 8 ++++---- src/pagination/docs/readme.md | 8 ++++---- src/progressbar/docs/readme.md | 2 +- src/rating/docs/readme.md | 2 +- src/tabs/docs/readme.md | 4 ++-- src/timepicker/docs/readme.md | 8 ++++---- src/typeahead/docs/readme.md | 18 +++++++++--------- 7 files changed, 25 insertions(+), 25 deletions(-) diff --git a/src/datepicker/docs/readme.md b/src/datepicker/docs/readme.md index bb00aeb818..83208dae1a 100644 --- a/src/datepicker/docs/readme.md +++ b/src/datepicker/docs/readme.md @@ -9,11 +9,11 @@ Everything is formatted using the [date filter](http://docs.angularjs.org/api/ng All settings can be provided as attributes in the `` or globally configured through the `datepickerConfig`. - * `ng-model` + * `ng-model` : The date object. - * `show-weeks` + * `show-weeks` _(Defaults: true)_ : Whether to display week numbers. @@ -21,11 +21,11 @@ All settings can be provided as attributes in the `` or globally con _(Defaults: 0)_ : Starting day of the week from 0-6 (0=Sunday, ..., 6=Saturday). - * `min` + * `min` _(Default: null)_ : Defines the minimum available date. - * `max` + * `max` _(Default: null)_ : Defines the maximum available date. diff --git a/src/pagination/docs/readme.md b/src/pagination/docs/readme.md index 925e4aeb89..dbb09eabb3 100644 --- a/src/pagination/docs/readme.md +++ b/src/pagination/docs/readme.md @@ -5,19 +5,19 @@ A lightweight pagination directive that is focused on ... providing pagination & Settings can be provided as attributes in the `` or globally configured through the `paginationConfig`. - * `page` + * `page` : Current page number. First page is 1. - * `total-items` + * `total-items` : Total number of items in all pages. - * `items-per-page` + * `items-per-page` _(Defaults: 10)_ : Maximum number of items per page. A value less than one indicates all items on one page. - * `max-size` + * `max-size` _(Defaults: null)_ : Limit number for pagination size. diff --git a/src/progressbar/docs/readme.md b/src/progressbar/docs/readme.md index a43f36b3e4..a50766d11b 100644 --- a/src/progressbar/docs/readme.md +++ b/src/progressbar/docs/readme.md @@ -6,7 +6,7 @@ It supports multiple (stacked) bars into the same `` element or a sing #### `` #### - * `value` + * `value` : The current value of progress completed. diff --git a/src/rating/docs/readme.md b/src/rating/docs/readme.md index 123d5d219f..78a2d79e2d 100644 --- a/src/rating/docs/readme.md +++ b/src/rating/docs/readme.md @@ -4,7 +4,7 @@ Rating directive that will take care of visualising a star rating bar. #### `` #### - * `value` + * `value` : The current rate. diff --git a/src/tabs/docs/readme.md b/src/tabs/docs/readme.md index 6a5252c435..e33afdec5c 100644 --- a/src/tabs/docs/readme.md +++ b/src/tabs/docs/readme.md @@ -22,11 +22,11 @@ AngularJS version of the tabs directive. : Heading text or HTML markup. - * `active` + * `active` _(Defaults: false)_ : Whether tab is currently selected. - * `disabled` + * `disabled` _(Defaults: false)_ : Whether tab is clickable and can be activated. diff --git a/src/timepicker/docs/readme.md b/src/timepicker/docs/readme.md index ac81ea9e4e..0b7e59634b 100644 --- a/src/timepicker/docs/readme.md +++ b/src/timepicker/docs/readme.md @@ -4,19 +4,19 @@ A lightweight & configurable timepicker directive. All settings can be provided as attributes in the `` or globally configured through the `timepickerConfig`. - * `ng-model` + * `ng-model` : The Date object that provides the time state. - * `hour-step` + * `hour-step` _(Defaults: 1)_ : Number of hours to increase or decrease when using a button. - * `minute-step` + * `minute-step` _(Defaults: 1)_ : Number of minutes to increase or decrease when using a button. - * `show-meridian` + * `show-meridian` _(Defaults: true)_ : Whether to display 12H or 24H mode. diff --git a/src/typeahead/docs/readme.md b/src/typeahead/docs/readme.md index bff8795747..f0948e107c 100644 --- a/src/typeahead/docs/readme.md +++ b/src/typeahead/docs/readme.md @@ -13,38 +13,38 @@ This directive works with promises, meaning you can retrieve matches using the ` The typeahead directives provide several attributes: -* `ng-model` +* `ng-model` : Assignable angular expression to data-bind to -* `typeahead` +* `typeahead` : Comprehension Angular expression (see [select directive](http://docs.angularjs.org/api/ng.directive:select)) -* `typeahead-editable` +* `typeahead-editable` _(Defaults: true)_ : Should it restrict model values to the ones selected from the popup only ? -* `typeahead-input-formatter` +* `typeahead-input-formatter` _(Defaults: undefined)_ : Format the ng-model result after selection -* `typeahead-loading` +* `typeahead-loading` _(Defaults: angular.noop)_ : Binding to a variable that indicates if matches are being retrieved asynchronously -* `typeahead-min-length` +* `typeahead-min-length` _(Defaults: 1)_ : Minimal no of characters that needs to be entered before typeahead kicks-in -* `typeahead-on-select` +* `typeahead-on-select` _(Defaults: null)_ : A callback executed when a match is selected -* `typeahead-template-url` +* `typeahead-template-url` : Set custom item template -* `typeahead-wait-ms` +* `typeahead-wait-ms` _(Defaults: 0)_ : Minimal wait time after last character typed before typehead kicks-in