aboutsummaryrefslogtreecommitdiffstats
path: root/src/widget
AgeCommit message (Collapse)Author
2012-01-23refactor(scope.$watch): rearrange arguments passed into watcher (newValue, ↵Vojta Jina
oldValue, scope) As scopes are injected into controllers now, you have the reference anyway, so having scope as first argument makes no sense… Breaks $watcher gets arguments in different order (newValue, oldValue, scope)
2012-01-23refactor(scope): separate controller from scopeVojta Jina
Controller is standalone object, created using "new" operator, not messed up with scope anymore. Instead, related scope is injected as $scope. See design proposal: https://docs.google.com/document/pub?id=1SsgVj17ec6tnZEX3ugsvg0rVVR11wTso5Md-RdEmC0k Closes #321 Closes #425 Breaks controller methods are not exported to scope automatically Breaks Scope#$new() does not take controller as argument anymore
2012-01-08docs(fix): select widget name -> ng:modelVojta Jina
2011-12-07fix(input): bind inputs to the 'input' eventbartes
The input event is fired on all non-ie browsers whenever the contents of an input field changes. This means that we now support cut&paste via mouse which was previously unsupported. IE8 and older don't support this events and IE9 has a problematic support for it, so we can't rely solely on this event and drop keydown and change events.
2011-12-06docs(form): add docs about form submissionIgor Minar
2011-12-06feat(form): do not prevent submission if action attribute presentVojta Jina
2011-11-15fix(input): treat all not number model as blankMisko Hevery
2011-11-15fix(radio): fix binding to value={{exp}}Misko Hevery
2011-11-14style(docs): make jslint happy - fix some warningsVojta Jina
2011-11-14fix(doc) cleanup all api doc link warningsMisko Hevery
2011-11-14refactor(api): remove type augmentationMisko Hevery
BREAK: - remove angular.[Object/Array/String/Function] - in templates [].$filter(predicate) and friends need to change to [] | filter:predicate
2011-11-14refactor(injector): switch to injector 2.0 introduce modulesMisko Hevery
2011-11-14refactor(compiler) turn compiler into a serviceMisko Hevery
BREAK - remove angular.compile() since the compile method is now a service and needs to be injected
2011-10-20fix(radio): allows data-binding on value property. Closes#316Misko Hevery
2011-10-19style(select): cleaning up select.jsIgor Minar
2011-10-19fix(ng:options): compile null/blank option tagTEHEK Firefox
Fixes #562
2011-10-19fix(ng:pattern): correctly parse out inlined regexpIgor Minar
2011-10-19docs(textarea): add docs for angular.widget.textareaIgor Minar
2011-10-19style(input): fix style violations in the input.js fileIgor Minar
2011-10-19feat(input): add ng:minlength and ng:maxlength validationKonstantin Stepanov
notes(igor): I also e2e tests and refactorred the e2e test example to be more clear about what is a variable and what is an html/framework api.
2011-10-19fix(input): recognize 'password' as an html input typeKonstantin Stepanov
2011-10-18fix(ng:options): select correct element when '?'-option was previously selectedTEHEK Firefox
Closes #599
2011-10-13fix(checkbox): prefix true-value & false-value with ng:Igor Minar
2011-10-12docs(*): remove @workInProgress from everywhereIgor Minar
it's not useful any more and it only makes the docs look ugly
2011-10-12docs(forms): add ng:change docs and other fixesIgor Minar
2011-10-11chore(formating): clean code to be function() {Misko Hevery
2011-10-11feat(forms): new and improved formsMisko Hevery