Skip to content
This repository has been archived by the owner on May 29, 2019. It is now read-only.

Commit

Permalink
chore(demo): fix eye icon for watched attributes
Browse files Browse the repository at this point in the history
Closes #1556
  • Loading branch information
bekos authored and pkozlowski-opensource committed Jan 11, 2014
1 parent 912770f commit 42a029f
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 25 deletions.
8 changes: 4 additions & 4 deletions src/datepicker/docs/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@ Everything is formatted using the [date filter](http://docs.angularjs.org/api/ng

All settings can be provided as attributes in the `<datepicker>` or globally configured through the `datepickerConfig`.

* `ng-model` <i class="icon-eye-open"></i>
* `ng-model` <i class="glyphicon glyphicon-eye-open"></i>
:
The date object.

* `show-weeks` <i class="icon-eye-open"></i>
* `show-weeks` <i class="glyphicon glyphicon-eye-open"></i>
_(Defaults: true)_ :
Whether to display week numbers.

* `starting-day`
_(Defaults: 0)_ :
Starting day of the week from 0-6 (0=Sunday, ..., 6=Saturday).

* `min` <i class="icon-eye-open"></i>
* `min` <i class="glyphicon glyphicon-eye-open"></i>
_(Default: null)_ :
Defines the minimum available date.

* `max` <i class="icon-eye-open"></i>
* `max` <i class="glyphicon glyphicon-eye-open"></i>
_(Default: null)_ :
Defines the maximum available date.

Expand Down
8 changes: 4 additions & 4 deletions src/pagination/docs/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ A lightweight pagination directive that is focused on ... providing pagination &

Settings can be provided as attributes in the `<pagination>` or globally configured through the `paginationConfig`.

* `page` <i class="icon-eye-open"></i>
* `page` <i class="glyphicon glyphicon-eye-open"></i>
:
Current page number. First page is 1.

* `total-items` <i class="icon-eye-open"></i>
* `total-items` <i class="glyphicon glyphicon-eye-open"></i>
:
Total number of items in all pages.

* `items-per-page` <i class="icon-eye-open"></i>
* `items-per-page` <i class="glyphicon glyphicon-eye-open"></i>
_(Defaults: 10)_ :
Maximum number of items per page. A value less than one indicates all items on one page.

* `max-size` <i class="icon-eye-open"></i>
* `max-size` <i class="glyphicon glyphicon-eye-open"></i>
_(Defaults: null)_ :
Limit number for pagination size.

Expand Down
2 changes: 1 addition & 1 deletion src/progressbar/docs/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ It supports multiple (stacked) bars into the same `<progress>` element or a sing

#### `<progressbar>` ####

* `value` <i class="icon-eye-open"></i>
* `value` <i class="glyphicon glyphicon-eye-open"></i>
:
The current value of progress completed.

Expand Down
2 changes: 1 addition & 1 deletion src/rating/docs/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Rating directive that will take care of visualising a star rating bar.

#### `<rating>` ####

* `value` <i class="icon-eye-open"></i>
* `value` <i class="glyphicon glyphicon-eye-open"></i>
:
The current rate.

Expand Down
4 changes: 2 additions & 2 deletions src/tabs/docs/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ AngularJS version of the tabs directive.
:
Heading text or HTML markup.

* `active` <i class="icon-eye-open"></i>
* `active` <i class="glyphicon glyphicon-eye-open"></i>
_(Defaults: false)_ :
Whether tab is currently selected.

* `disabled` <i class="icon-eye-open"></i>
* `disabled` <i class="glyphicon glyphicon-eye-open"></i>
_(Defaults: false)_ :
Whether tab is clickable and can be activated.

Expand Down
8 changes: 4 additions & 4 deletions src/timepicker/docs/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ A lightweight & configurable timepicker directive.

All settings can be provided as attributes in the `<timepicker>` or globally configured through the `timepickerConfig`.

* `ng-model` <i class="icon-eye-open"></i>
* `ng-model` <i class="glyphicon glyphicon-eye-open"></i>
:
The Date object that provides the time state.

* `hour-step` <i class="icon-eye-open"></i>
* `hour-step` <i class="glyphicon glyphicon-eye-open"></i>
_(Defaults: 1)_ :
Number of hours to increase or decrease when using a button.

* `minute-step` <i class="icon-eye-open"></i>
* `minute-step` <i class="glyphicon glyphicon-eye-open"></i>
_(Defaults: 1)_ :
Number of minutes to increase or decrease when using a button.

* `show-meridian` <i class="icon-eye-open"></i>
* `show-meridian` <i class="glyphicon glyphicon-eye-open"></i>
_(Defaults: true)_ :
Whether to display 12H or 24H mode.

Expand Down
18 changes: 9 additions & 9 deletions src/typeahead/docs/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,38 +13,38 @@ This directive works with promises, meaning you can retrieve matches using the `

The typeahead directives provide several attributes:

* `ng-model` <i class="icon-eye-open"></i>
* `ng-model` <i class="glyphicon glyphicon-eye-open"></i>
:
Assignable angular expression to data-bind to

* `typeahead` <i class="icon-eye-open"></i>
* `typeahead` <i class="glyphicon glyphicon-eye-open"></i>
:
Comprehension Angular expression (see [select directive](http://docs.angularjs.org/api/ng.directive:select))

* `typeahead-editable` <i class="icon-eye-open"></i>
* `typeahead-editable` <i class="glyphicon glyphicon-eye-open"></i>
_(Defaults: true)_ :
Should it restrict model values to the ones selected from the popup only ?

* `typeahead-input-formatter` <i class="icon-eye-open"></i>
* `typeahead-input-formatter` <i class="glyphicon glyphicon-eye-open"></i>
_(Defaults: undefined)_ :
Format the ng-model result after selection

* `typeahead-loading` <i class="icon-eye-open"></i>
* `typeahead-loading` <i class="glyphicon glyphicon-eye-open"></i>
_(Defaults: angular.noop)_ :
Binding to a variable that indicates if matches are being retrieved asynchronously

* `typeahead-min-length` <i class="icon-eye-open"></i>
* `typeahead-min-length` <i class="glyphicon glyphicon-eye-open"></i>
_(Defaults: 1)_ :
Minimal no of characters that needs to be entered before typeahead kicks-in

* `typeahead-on-select` <i class="icon-eye-open"></i>
* `typeahead-on-select` <i class="glyphicon glyphicon-eye-open"></i>
_(Defaults: null)_ :
A callback executed when a match is selected

* `typeahead-template-url` <i class="icon-eye-open"></i>
* `typeahead-template-url` <i class="glyphicon glyphicon-eye-open"></i>
:
Set custom item template

* `typeahead-wait-ms` <i class="icon-eye-open"></i>
* `typeahead-wait-ms` <i class="glyphicon glyphicon-eye-open"></i>
_(Defaults: 0)_ :
Minimal wait time after last character typed before typeahead kicks-in

0 comments on commit 42a029f

Please sign in to comment.