aboutsummaryrefslogtreecommitdiffstats
path: root/test/directive/selectSpec.js
AgeCommit message (Collapse)Author
2012-03-28chore(module): move files around in preparation for more modulesMisko Hevery
2012-03-26feat($compile): do not interpolate boolean attributes, rather evaluate themVojta Jina
So that we can have non string values, e.g. ng-value="true" for radio inputs Breaks boolean attrs are evaluated rather than interpolated To migrate your code, change: <input ng-disabled="{{someBooleanVariable}}"> to: <input ng-disabled="someBooleanVariabla"> Affected directives: * ng-multiple * ng-selected * ng-checked * ng-disabled * ng-readonly * ng-required
2012-03-19fix(select): multiselect failes to update view on selection insertMisko Hevery
In multiselect when the underlying selection array push/pops an element the view did not re-render since the array reference stayed the same.
2012-03-13fix(forms): lowercase all validation error keysIgor Minar
2012-03-12fix(forms): prefix all form and control properties with $Igor Minar
2012-03-09chore(*): refactor all ng: to ng-Igor Minar
2012-03-08chore(directives,widgets): reorg the code under directive/ dirIgor Minar