aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2011-10-26feat(bootstrap): drop angular.js file name restrictions for autobindIgor Minar
The last script element in the dom is always us if the script that contains angular is loaded synchronously. For async loading manual bootstrap needs to be performed. Close #621
2011-10-26fix(docs): remove unused $browser dependencyIgor Minar
2011-10-26fix(example): fixes for personalLog e2e testsIgor Minar
Looks like this got broken with scope rewrite.
2011-10-26style(Angular.js): various code style fixesIgor Minar
2011-10-26style(HashQueueMap): fixing a typo in the commentIgor Minar
2011-10-26fix(ng:repeat) with array ignore properties not representing array elementsIgor Minar
Along the way I also changed the repeater impl to use for loop instead of for in loop. Iteration over objects is handled by creating an array of keys, which is sorted and this array then determines the order of iteration over an element. This makes repeating over objects deterministic and cross-browser compatible.
2011-10-26fix(ng:view): ignore stale xhr callbacksIgor Minar
A lot of badness happens when we don't ignore stale xhrs. These raceconditions are only apparent when user clicks through the app very quckly without waiting for routes to fully load. Closes #619
2011-10-26test(ng:view): spec cleanupIgor Minar
- remove optional controller definition from specs - remove extranious digest calls
2011-10-24fix(angular.widget): Allow widgets to be styled in IE8 and belowDhruv Manek
Closes #584
2011-10-24fix(scenario): Change title to "AngularJS"Vojta Jina
2011-10-24chore(release): preparing the 0.10.5 steel-fist iterationIgor Minar
2011-10-22chore(release): cutting the 0.10.4 human-torch releasev0.10.4Igor Minar
2011-10-22docs(changelog): update changelog with 0.10.4 release notesIgor Minar
2011-10-22fix(defer.cancel): should return false instead of undefinedIgor Minar
2011-10-22feat($defer): add $defer.cancelIgor Minar
This functionality was previously available only as obscure $browser.defer.cancel. I also added docs and tests and fixed an issue in .defer.cancel mock.
2011-10-22fix(docs): key-binding used old scope apisIgor Minar
2011-10-22feat(docs): add "Loading..." notificationIgor Minar
2011-10-22fix(docs): update page title only when content loadsIgor Minar
2011-10-22style(docs): change "this" to "scope" in the controllerIgor Minar
2011-10-22fix($location): rewrite links with nested elementsVojta Jina
For example: <a href="some/link">inner <span>text</span></a> If you click on "text", then the span element is event.target, so we need to traverse the DOM.
2011-10-20feat(filter.date): use mediumDate as defaultIgor Minar
Breaking change! Previously the default was fullDate.
2011-10-20fix(date filter): default to fullDate formatIgor Minar
The browser's behave inconsistently, so we should just stick to one format when the format is not specified by the developer Closes #605
2011-10-20fix(compiler): revert 8611ebe6 - calling \$digest after linkingIgor Minar
Change introduced by me in 8611ebe6 results in considerable inefficiencies when the compiler and linker is used from within a widget, in which case, we call $digest unnecessary since it will be called by the $apply which called the directive/widget in the first place. There are only two places when the extra $digest call can be useful - when manually bootstrapping the app or in tests. However even in tests this behavior can result in unwanted results (especially when ng:controller is involved). So it is better to leave it for the developer to call $digest when it is really needed.
2011-10-20fix(radio): allows data-binding on value property. Closes#316Misko Hevery
2011-10-20feat(sanitizer): add html5 elements to the whitelistIgor Minar
Closes #89
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(gen-docs): require files without touching PATHVojta Jina
So that it works on latest revision of node... New version of Node (v0.5.x) does not support require.paths.push().
2011-10-18fix(ng:repeat): repeater should ignore $ and $$ propertiesIgor Minar
2011-10-18chore(version.yaml): add missing snapshot version suffixIgor Minar
2011-10-18chore(jstd adapter): switch to our version with backported fixesIgor Minar
sha of the version: da92db714142b49f9cf61db664e782bb0ccad80b
2011-10-18fix(ng:options): select correct element when '?'-option was previously selectedTEHEK Firefox
Closes #599
2011-10-14chore(release): preparing the 0.10.4 human-torch iterationIgor Minar
2011-10-14chore(release): cutting the 0.10.3 shattering-heartbeat releasev0.10.3Igor Minar
2011-10-14fix(docs): fix jsfiddle integrationIgor Minar
this got accidentally messed up during the forms refactoring and mass renaming
2011-10-14docs(forms): fix devguide forms example codeIgor Minar
2011-10-14docs(cookbook): disable jsfiddle for deeplinking exampleIgor Minar
it uses extra resources, so it won't work on fiddle
2011-10-13chore(libs): update libs (jasmine, jstd, jasmine-jstd adapter)Vojta Jina
2011-10-13fix(checkbox): prefix true-value & false-value with ng:Igor Minar
2011-10-13chore(release): preparing release notes for 0.10.3Igor Minar
2011-10-13docs($location): Html5 -> HTML5Igor Minar
2011-10-13docs($location): update replace() docsIgor Minar
2011-10-13docs($location): fix $config -> $locationConfig in docsIgor Minar
2011-10-13chore(logo): add hi-res ng logoIgor Minar
2011-10-13fix(docs): set proper base href when hashbang url requestedVojta Jina