aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
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
2011-10-13fix(nodeserver): docs rewritingVojta Jina
There can be url /api which does not end with / and we want to rewrite this url as well...
2011-10-13feat(nodeserver): if index.html exists, serve it instead of directory listingVojta Jina
2011-10-13fix($location): do not rewrite link when meta key pressedVojta Jina
2011-10-13feat(scenario): allow key pressing when triggering browser eventVojta Jina
Add parameter to our browserTriger function to allow specifying which keys are pressed. Note, this does not work on IE<9 !
2011-10-12docs(dev_guide.bootstrap.auto_bootstrap): fixing a typoIgor 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-12fix(forms): broken tests on jQuery and ie8&9Misko Hevery
2011-10-12fix(compiler): linking function should call $digestIgor Minar
The linked scope should be $digest-ed but only if a $digest isn't already running on it.
2011-10-12fix(jqLite): attr for boolean attribute should lowercase valueIgor Minar
2011-10-12refactor(ng:bind-attr): simplify impl by leveraging jqueryIgor Minar
2011-10-12test(jstd-config): add widget specs to jsTestDriver-jquery.confIgor Minar
2011-10-12fix(ng:class): ignore undefined or NaN classnamesIgor Minar
2011-10-12docs(forms): add ng:change docs and other fixesIgor Minar
2011-10-12test(checkbox): add test for ng:changeIgor Minar
2011-10-11chore(formating): clean code to be function() {Misko Hevery
2011-10-11feat(forms): new and improved formsMisko Hevery
2011-10-11style(examples): clean up dead examplesMisko Hevery
2011-10-11style(.gitignore) added IDEAMisko Hevery
2011-10-11refactor(bindings): remove the decoration of the DOM with errors.Misko Hevery
Only $exceptionHandler gets notified now.
2011-10-11refactor(hover): delete hover serviceMisko Hevery
2011-10-11fix(jqlite): removeClass would clobber class namesMisko Hevery
2011-10-11feat(jqlite): added .inheritedData method and $destroy event.Misko Hevery
- refactored .scope() to use .inheritedData() instead. - .bind('$destroy', callback) will call when the DOM element is removed
2011-10-11feat(jqlite): support required as a no-value attributeMisko Hevery
2011-10-11refactor(injection) infer injection args in ng:controller onlyMisko Hevery
Because only controllers don't have currying, we can infer its arguments, all other APIs needing currying, automatic inference complicates the matters unecessary.
2011-10-11style(gitignore): added xproject to ignore listMisko Hevery
2011-10-11feat(ng:repeat) collection items and DOM elements affinity / stabilityMisko Hevery
2011-10-11fix(filter): make json filter ignore private propertiesMisko Hevery
2011-10-10chore(release): prepare the 0.10.3 shattering-heartbeat iterationIgor Minar
2011-10-08chore(release): cutting the 0.10.2 sneaky-seagull releasev0.10.2Igor Minar
2011-10-08docs(changelog): release notes for 0.10.2 sneaky-seagullIgor Minar
2011-10-07fix(docs): rename doc dev_guide.templates.css to dev_guide.templates.css-stylingDhruv Manek
Closes #580
2011-10-07fix(parser): Fix short circuit of logical AND and OR operatorsDhruv Manek
Closes #433
2011-10-05feat(gdocs): better error handlingMisko Hevery
2011-10-05docs(started): fixing pluralizationdandoyon
2011-10-05fix($limitTo): properly handle excessive limitsTEHEK Firefox
`angular.Array.limitTo`'s result should not exceed original input array size Closes #571
2011-09-29doc($log): fix the $log service exampleIgor Minar
is no longer auto-published on the root scope, so we need to publish it via a controller
2011-09-28chore(directives): add a todo for ng:styleIgor Minar
2011-09-28fix(jqLite): css should convert dash-separated properties to camelCaseIgor Minar
this fix is needed for Firefox or other browsers that strictly follow dom/css spec which states that element.style should make properties available in camelCased form. Closes #569
2011-09-27test(matchers): add toBeOneOf matcherIgor Minar
2011-09-27fix($resource): action defaults should override resource defaultsMarcello Nuccio
defaults definned per action should take precedence over defaults defined for the whole resource. This is potentialy a BREAKING CHANGE in case someone relied on the buggy behavior.
2011-09-26fix(e2e): add index-nocache.html to run e2e tests without cacheIgor Minar
using appcache while running e2e tests was causing the following problems: - Safari would occasionally reload the app (as a result of the appcache refresh) during the angular.validator.asychronous test, which would result in test failure and false positivy. - Firefox6 would run the tests very slowly, disabling the cache resolved the latency issues - Sometimes tests would run with stale code pulled from cache, which would result in flaky tests.
2011-09-26fix(scenario): workaround for FF6 dispatchEvent issue #684208Igor Minar
2011-09-26Revert "fix(scenario): temporary fix for FF6"Igor Minar
This reverts commit aac68bf2ba2dcdf0b22fa4f15ea49672cb06328d.
2011-09-26feat(docs): use html5 history api for all routing in the docs appVojta Jina
- Configure our docs app to use new $location with html5 history api! - Update simple node web server to serve index.html for all links (rewritting). - Update .htaccess file to serve index.html for all links (rewritting). - At runtime determine the base href path and attach it to the DOM. We needed the absolute URL to get all browsers to work well. - Because of the above, we also need to dynamically determine all needed js/css resources and add them to the DOM. This was needed because FF6 would eagerly fetch resources with wrong URL since the base element is added to the dom at runtime. - All content html files were moved to the partials directory, because with the new html5 urls it was impossible to tell if request for http://domain/api/angular.filter.html was an html5 url for the html filter doc page, or an xhr/appcache request for the content html file for the html filter. f
2011-09-21fix($route): fix regex escaping in route matcherIgor Minar
2011-09-16fix(angular-mocks): fix .defer.cancel when i=0Igor Minar