Skip to content

Commit

Permalink
Add disabled propery
Browse files Browse the repository at this point in the history
  • Loading branch information
princejwesley committed May 16, 2015
1 parent 45ab00c commit f73c56a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ var app = angular.module('yourApp',
### selectable
> text selection enabled or not. (default: *false*)
### disabled
> slider is disabled or not. (default: *false*)
### handleDistRatio
> Distance between handle and shape center(default: 1.0)
Expand Down Expand Up @@ -119,6 +122,7 @@ defaults: {
animate: true,
animateDuration: 360,
selectable: false,
disabled: false,
onSlide: angular.noop,
onSlideEnd: angular.noop,
},
Expand All @@ -141,14 +145,16 @@ scope: {
animate: '=?',
animateDuration: '=?',
selectable: '=?',
disabled: '=?'
onSlide: '&',
onSlideEnd: '&',
},
```
### Watchers
```javascript
scope: {
value: '=?'
value: '=?',
disabled: '=?'
}
```
#### CSS classes
Expand Down
Loading

0 comments on commit f73c56a

Please sign in to comment.