| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-02-16 | docs($locationProvider): tag as a provider rather than object | Peter Bacon Darwin | |
| 2014-02-16 | docs(docs.css): add initial type-hint styles | Peter Bacon Darwin | |
| 2014-02-16 | docs(content): fix bad links | Peter Bacon Darwin | |
| 2014-02-16 | chore(doc-gen): remove console.log statements | Peter Bacon Darwin | |
| 2014-02-16 | docs(ngHref): fix example that navigates away from the page | Peter Bacon Darwin | |
| 2014-02-16 | docs(ngRoute): ask for examples to have their base[href] fixed | Peter Bacon Darwin | |
| 2014-02-16 | docs(ngHref): don't run the breaking protractor test | Peter Bacon Darwin | |
| 2014-02-16 | chore(package.json): get dgeni from the npm registry | Peter Bacon Darwin | |
| 2014-02-16 | test(docs-app-e2e): refactor test inline with new docs app | Peter Bacon Darwin | |
| The links to code elements have now changed: api/ng.directive:ngClick -> api/ng/directive/ngClick. Examples now run inside iframes, so we need to instruct Protractor to switch to the example iframe. | |||
| 2014-02-16 | docs(api/index): fix ambiguous ngClick link | Peter Bacon Darwin | |
| ngClick appears in more than one module so we must make it explicit. | |||
| 2014-02-16 | docs(ngShowHide): fix icons in example | Peter Bacon Darwin | |
| The protractor tests were failing because the spans containing the icons were not displaying anymore. | |||
| 2014-02-16 | docs(examples): fix example dependencies | Peter Bacon Darwin | |
| 2014-02-16 | docs(ngSanitize): add dependency on angular-sanitize to example | Peter Bacon Darwin | |
| 2014-02-16 | chore(doc-gen): provide example dependencyPath in config | Peter Bacon Darwin | |
| 2014-02-16 | chore(doc-gen): move git info into its own processor | Peter Bacon Darwin | |
| 2014-02-16 | chore(docs-indexPage.template): add onload handler for Google Analytics | Peter Bacon Darwin | |
| 2014-02-16 | chore(indexPage.template): add back Google analytics and offline support | Peter Bacon Darwin | |
| 2014-02-16 | docs(injector): move angular.injector to the ng module | Peter Bacon Darwin | |
| Even though it is defined in the auto folder, it makes more sense for this function to appear in the ng module in the docs. | |||
| 2014-02-16 | chore(docs): remove 'AngularJS ' prefix from version drop-down | Peter Bacon Darwin | |
| 2014-02-16 | chore(protractor tests): fix up e2e tests | Julie | |
| 2014-02-16 | chore(protractor-generator): add dgeni processor for protractor | Julie | |
| 2014-02-16 | docs(misc): add landing page for the miscellaneous area | Peter Bacon Darwin | |
| 2014-02-16 | docs(tutorial): give the tutorial landing page a better name | Peter Bacon Darwin | |
| 2014-02-16 | chore(doc-gen): new docs | Peter Bacon Darwin | |
| chore(doc-gen): implement dgeni | |||
| 2014-02-16 | docs(bike-shed-migration): fix url-based links refs to AUTO module | Peter Bacon Darwin | |
| 2014-02-16 | docs(bike-shed-migration): fix invalid </file name=""> HTML in examples | Peter Bacon Darwin | |
| 2014-02-16 | docs(ngResource): fix over-length line | Peter Bacon Darwin | |
| 2014-02-16 | docs(sce): fix invalid @name tags | Peter Bacon Darwin | |
| 2014-02-16 | docs(bike-shed-migration): let markdown deal with extenal links | Peter Bacon Darwin | |
| It is problematic to use {@link} tags with external links because the markdown parser converts them to links for us before we parse the @links. This means that the following tag: ``` {@link http://www.google.com Google} ``` get converted to: ``` {@link <a href="http://www.google.com/"></a> Google} ``` Our {@link} parser then converts this to: ``` <a href="<a"><</a>href="http://www.google.com/"></a> Google} ``` which is clearly a mess. The best solution is not to use {@link} tags for external links and just use the standard markdown syntax: ``` [Google](http://www.google.com) ``` In the long run, we could look into configuring or modifying `marked` not to convert these external links or we could provide a "pre-parser" processor that dealt with such links before `marked` gets its hands on it. | |||
| 2014-02-16 | docs(bike-shed-migration): convert <doc:...> examples to <example>... | Peter Bacon Darwin | |
| 2014-02-16 | docs(sce): fix reference to $sceDelegateProvider | Peter Bacon Darwin | |
| 2014-02-16 | docs(all): convert <pre>/</pre> snippets to GFM snippets | Caitlin Potter | |
| 2014-02-16 | docs(bike-shed-migration): convert doctype and names | Peter Bacon Darwin | |
| 2014-02-16 | docs(bike-shed-migration): move ng module doc into Angular.js | Peter Bacon Darwin | |
| 2014-02-16 | docs(bike-shed-migration): change tutorial doctype and add @step tag | Peter Bacon Darwin | |
| 2014-02-16 | docs(bike-shed-migration): fix up links outside the domain | Peter Bacon Darwin | |
| It is safer to use markdown style links and save jsdoc style links for internal links and code references | |||
| 2014-02-16 | docs(bike-shed-migration): Add missing module tag | Peter Bacon Darwin | |
| The generator is able to imply the module from the containing folder for most files but these are in the ng module but are stored at the root folder. | |||
| 2014-02-15 | fix(numberFilter): convert all non-finite/non-numbers/non-numeric strings to ↵ | Sergei Z | |
| the empty string The previous code for filtering out non-finite numbers was broken, as it would convert `null` to `0`, as well as arrays. This change fixes this by converting null/undefined/NaN/Infinity/any object to the empty string. Closes #6188 Closes #6261 | |||
| 2014-02-14 | chore(release): update cdn version | jenkins | |
| 2014-02-14 | docs(changelog): release notes for 1.2.13v1.2.13 | Brian Ford | |
| 2014-02-14 | style(animate): remove ws | Igor Minar | |
| 2014-02-14 | fix($animate): ensure $animate doesn't break natural CSS transitions | Matias Niemelä | |
| BREAKING CHANGE: ngClass and {{ class }} will now call the `setClass` animation callback instead of addClass / removeClass when both a addClass/removeClass operation is being executed on the element during the animation. Please include the setClass animation callback as well as addClass and removeClass within your JS animations to work with ngClass and {{ class }} directives. Closes #6019 | |||
| 2014-02-14 | pref($animate): only trigger DOM callbacks if registered on the element ↵ | Matias Niemelä | |
| being animated BREAKING CHANGE: Both the `$animate:before` and `$animate:after` DOM events must be now registered prior to the $animate operation taking place. The `$animate:close` event can be registered anytime afterwards. DOM callbacks used to fired for each and every animation operation that occurs within the $animate service provided in the ngAnimate module. This may end up slowing down an application if 100s of elements are being inserted into the page. Therefore after this change callbacks are only fired if registered on the element being animated. | |||
| 2014-02-14 | pref($animate): group all asynchronous requests into one shared buffer | Matias Niemelä | |
| 2014-02-14 | chore(jqLite): expose the _data lookup function to angular.element | Matias Niemelä | |
| 2014-02-14 | fix($compile) support templates with table content root nodes | Caitlin Potter | |
| If the first element in a template is a <tr>, <th>, <td>, or <tbody> tag, the HTML compiler will ensure that the template is wrapped in a <table> element so that the table content is not discarded. Closes #2848 Closes #1459 Closes #3647 Closes #3241 | |||
| 2014-02-13 | fix(input): don't apply textInput to <input type="file"> | Tim Whitbeck | |
| textInput shouldn't be applied to file inputs to ease writing of custom file input directives. This change prevents file inputs from instantiating the text input parser/formatter pipelines. Closes #6247 Closes #6231 | |||
| 2014-02-13 | Merge pull request #6245 from brianhall/master | Naomi Black | |
| Google logo in AngularJS.exports to vector format. | |||
| 2014-02-13 | docs(logo): change logo to vector format in .eps file | Brian Hall | |
| Browser: Other Component: docs Regression: no Closes issue #6092 | |||
| 2014-02-12 | fix(input): setViewValue on compositionend | Caitlin Potter | |
| Because of a4e6d962, model is not updated on input/change between the compositionstart and compositionend events. Unfortunately, the compositionend event does not always happen prior to an input/change event. This changeset calls the listener function to update the model after a compositionend event is received. Closes #6058 Closes #5433 | |||
