Skip to content

Commit f933e93

Browse files
committed
Add dropdown-disabled, thanks @Chinokao
1 parent ab07fae commit f933e93

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,15 @@ You can specify a function to call upon dropdown value change by specifying the
9898
</div>
9999
```
100100

101+
You can set `dropdown-disabled` to disable the dropdown when the bound value is truthy.
102+
103+
```html
104+
<div dropdown-select="ddSelectOptions"
105+
dropdown-model="ddSelectSelected"
106+
dropdown-disabled="isDropdownDisabled" >
107+
</div>
108+
```
109+
101110
## Custom Templates
102111

103112
If you'd like to customize the templates more, you can override the values stored in the following `$templateCache` keys:

bower.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-dropdowns",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"homepage": "https://github.com/jseppi/angular-dropdowns",
55
"authors": [
66
"James Seppi <[email protected]> (http://github.com/jseppi)",
@@ -12,7 +12,8 @@
1212
"dinodsaurus",
1313
"elishacook",
1414
"alexisbg",
15-
"BDomzalski"
15+
"BDomzalski",
16+
"Chinokao"
1617
],
1718
"description": "AngularJS Dropdown Directives",
1819
"main": [

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-dropdowns",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"author": {
55
"name": "James Seppi",
66
"email": "[email protected]",
@@ -24,7 +24,8 @@
2424
"dinodsaurus",
2525
"elishacook",
2626
"alexisbg",
27-
"BDomzalski"
27+
"BDomzalski",
28+
"Chinokao"
2829
],
2930
"repository": {
3031
"type": "git",

0 commit comments

Comments
 (0)