| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-11-14 | fix($location): links without path segment should not change the path | Vojta Jina | |
| Closes #648 | |||
| 2011-11-14 | docs(browser): moved and migrate browser removed unneeded files. | Misko Hevery | |
| 2011-11-14 | doc($rootScope): scope documentation changes | Misko Hevery | |
| 2011-11-14 | doc(locale): migrate docs to new format | Misko Hevery | |
| 2011-11-14 | doc($formFactory): migrated the $formFactory documentation | Misko Hevery | |
| 2011-11-14 | doc(service): update docs for the moved services | Misko Hevery | |
| 2011-11-14 | doc($filter): added $filter documentation | Misko Hevery | |
| 2011-11-14 | doc(AUTO, NG_MOCK): Documenting the AUTO and NG_MOCK module | Misko Hevery | |
| 2011-11-14 | refactor($location): merged $locationConfig service into $locationProvider | Misko Hevery | |
| 2011-11-14 | chore(scope): remove $service | Misko Hevery | |
| 2011-11-14 | chore(scenario tests): make scenario tests pass again | Misko Hevery | |
| 2011-11-14 | new(directive): added ng:module directive for loading modules | Misko Hevery | |
| 2011-11-14 | refactor(api): remove type augmentation | Misko Hevery | |
| BREAK: - remove angular.[Object/Array/String/Function] - in templates [].$filter(predicate) and friends need to change to [] | filter:predicate | |||
| 2011-11-14 | refacter(filters): convert filter/limitTo/orderBy from type augmentation to ↵ | Misko Hevery | |
| filters | |||
| 2011-11-14 | refactor(json): break dependence on api.js | Misko Hevery | |
| 2011-11-14 | refactor(filter): filters are now injectable and services | Misko Hevery | |
| BREAK: - removed CSS support from filters | |||
| 2011-11-14 | move(filters): appease the History God | Misko Hevery | |
| 2011-11-14 | refactor(parser): turn parser into a service (keep compatibility hack) | Misko Hevery | |
| 2011-11-14 | fix(JSON): json date parsing same native/ngular parser | Misko Hevery | |
| 2011-11-14 | move(parser): appease the History God | Misko Hevery | |
| 2011-11-14 | refactor($service): removed almost all references to scope.$service | Misko Hevery | |
| - still need to remove from factory | |||
| 2011-11-14 | refactor(services): migrate angular.service -> module | Misko Hevery | |
| 2011-11-14 | refactor(injector): switch to injector 2.0 introduce modules | Misko Hevery | |
| 2011-11-14 | refactor(compiler) turn compiler into a service | Misko Hevery | |
| BREAK - remove angular.compile() since the compile method is now a service and needs to be injected | |||
| 2011-11-14 | move(compiler): appease the History God | Misko Hevery | |
| - renamed: src/Compiler.js -> src/service/compiler.js - renamed: test/CompilerSpec.js -> test/service/compilerSpec.js | |||
| 2011-11-14 | refactor(injector): turn scope into a service | Misko Hevery | |
| - turn scope into a $rootScope service. - injector is now a starting point for creating angular application. - added inject() method which wraps jasmine its/beforeEach/afterEach, and which allows configuration and injection of services. - refactor tests to use inject() where possible BREAK: - removed angular.scope() method | |||
| 2011-11-14 | move(scope): appease the History God | Misko Hevery | |
| - renamed: src/Scope.js -> src/service/scope.js - renamed: test/ScopeSpec.js -> test/service/scopeSpec.js | |||
| 2011-10-22 | feat($defer): add $defer.cancel | Igor 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-22 | fix($location): rewrite links with nested elements | Vojta 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-13 | docs($location): Html5 -> HTML5 | Igor Minar | |
| 2011-10-13 | docs($location): fix $config -> $locationConfig in docs | Igor Minar | |
| 2011-10-13 | fix($location): do not rewrite link when meta key pressed | Vojta Jina | |
| 2011-10-12 | docs(*): remove @workInProgress from everywhere | Igor Minar | |
| it's not useful any more and it only makes the docs look ugly | |||
| 2011-10-11 | chore(formating): clean code to be function() { | Misko Hevery | |
| 2011-10-11 | feat(forms): new and improved forms | Misko Hevery | |
| 2011-10-11 | refactor(hover): delete hover service | Misko Hevery | |
| 2011-09-29 | doc($log): fix the $log service example | Igor Minar | |
| is no longer auto-published on the root scope, so we need to publish it via a controller | |||
| 2011-09-26 | fix(scenario): workaround for FF6 dispatchEvent issue #684208 | Igor Minar | |
| 2011-09-21 | fix($route): fix regex escaping in route matcher | Igor Minar | |
| 2011-09-08 | fix($location): Use encodeUriQuery instead of escape | Kai Groner | |
| Closes #492 | |||
| 2011-09-08 | style: fix some missing semi-colons and spaces, typos | Vojta Jina | |
| 2011-09-08 | refactor($route): remove some odd code and rename allowReload to forceReload | Vojta Jina | |
| 2011-09-08 | fix($route): update $route to reflect $location changes | Vojta Jina | |
| * update $route to reflect new $location * add some more unit tests to $route * fix some other failing unit tests * redirect overrides the url now Breaks $route custom redirect fn has only 3 params now | |||
| 2011-09-08 | feat($location): $location service with html5 history api support | Vojta Jina | |
| See documentation of $location for more info Breaks $location has no properties, only get/set methods Closes #168 Closes #146 Closes #281 Closes #234 | |||
| 2011-09-08 | feat($sniffer): basic implementation of browser feature testing | Vojta Jina | |
| This only extracts our 'hashchange' event and html5 history api detection from $browser. Closes #400 | |||
| 2011-09-08 | feat($browser): jQuery style url method, onUrlChange event | Vojta Jina | |
| This is just basic implementation of $browser.url, $browser.onUrlChange methods: $browser.url() - returns current location.href $browser.url('/new') - set url to /new If supported, history.pushState is used, location.href property otherwise. $browser.url('/new', true) - replace current url with /new If supported, history.replaceState is used, location.replace otherwise. $browser.onUrlChange is only fired when url is changed from the browser: - user types into address bar - user clicks on back/forward button - user clicks on link It's not fired when url is changed using $browser.url() Breaks Removed $browser.setUrl(), $browser.getUrl(), use $browser.url() Breaks Removed $browser.onHashChange(), use $browser.onUrlChange() | |||
| 2011-09-02 | test(jsonp): fixing jsonp e2e tests | Igor Minar | |
| - buzz api keeps on throttling our requests which makes our build fail so I'm disabling the buzz demo e2e test - the $xhr service jsonp test was modified to use jsonp on angularjs.org instead of buzz api for the same reason as mentioned above | |||
| 2011-08-31 | style(docs): improve the formatting of events in docs | Misko Hevery | |
| 2011-08-31 | feat($route): add events before/after route change | Misko Hevery | |
| BREAKING CHANGE * removing `onChange` FEATURE * adding three events: $beforeRouteChange, $afterRouteChange, $routeReload | |||
| 2011-08-31 | bug($xhr.bulk): fix exceptions under some circumstances | Misko Hevery | |
