aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2013-08-23chore: reorganize test helper files under test/helpersIgor Minar
2013-08-23fix($animate): skip ngAnimate animations if the provided element already has ↵Matias Niemelä
transitions/durations attached to it Closes #3587
2013-08-23fix($animate): only execute a timeout when transitions or keyframe ↵Matias Niemelä
animations are used ngAnimate causes a 1ms flicker on the screen when no CSS animations are present on the element. The solution is to change $animate to only use $timeouts when a duration is found on the element before the transition/keyframe animation takes over. Closes #3613
2013-08-23feat(ngMock): add support for creating dynamic style sheets within test codeMatias Niemelä
2013-08-23test(docs): ignore some of the specs on IEVojta Jina
This target was never un on our Jenkins CI. Some of the specs are using animation stuff, that IE does not support, so I'm disabling them.
2013-08-23test: rename / remove duplicate unit testsVojta Jina
2013-08-23fix($sniffer): history problems on Boxee boxDusan Bartos
History API not working properly on Boxee box browser (old Webkit) problem similar to the one on Android < 4
2013-08-23chore(ngdocs): fix the version jumperMatias Niemelä
correct the ordering and make gen-docs prepare the list of versions during the build process
2013-08-22revert: fix($sce): allow IE7 standards mode to pass non-quirks mode testChirayu Krishnappa
This reverts commit 637c9b1611c5a75a42048ee1c591521c7031751a. (ref #3633 and #3646) The minimum bar for $sce is IE8 in standards mode. IE7 standards mode is not supported. If you must support IE7, you should disable $sce completely. angular.module('ie7support', []).config(function($sceProvider) { // Completely disable SCE to support IE7. $sceProvider.enabled(false); });
2013-08-22docs(overview): improve grammarBrian Ford
2013-08-22docs(module): improve the installation instructions for optional modulesBrian Ford
Currently, the documentation does a bad job of explaining the distinction between the services that it provides, and the module itself. Furthermore, the instructions for using optional modules are inconsistent or missing. This commit addresses the problem by ading a new `{@installModule foo}` annotation to the docs generator that inlines the appropriate instructions based on the name of the module.
2013-08-22docs(changelog): release notes for 1.0.8 bubble-burstIgor Minar
2013-08-22docs(guide): warn about module creation versus retrievalghodss
Updated Module documentation to include the suggestion of the top-rated comment: "This documentation should warn that "angular.module('myModule', [])" always creates a new module, but "angular.module('myModule')" always retrieves an existing reference."
2013-08-22docs(guide): grammatical corrections to Form and Control definitionsMarcel Morgan
2013-08-21fix($q): fix forwarding resolution when callbacks aren't functionsBrian Ford
Uses the changes from @jamestalmage's fix in #3535. (thanks!) Closes #3535
2013-08-21fix(docs): Replace missing end tilde in resource docs for minerr.Adam Shannon
2013-08-21fix(package.json): use full version numbers when interpolatingMichał Gołębiowski
When using less than 3 numbers in npm package version together with tilde interpolation, it lets major version upgrades, e.g. "~0.10" means at least 0.10 and less than 1.0; this pattern would match e.g. 0.11, 0.12 etc. Besides, some package.json dependencies were upgraded.
2013-08-21docs(tutorial): update step_00.ngdocgdennie
Clarify the little snippet on dash vs camelCase html to directive naming pattern Closes #3550
2013-08-21docs(angular.module): improve docsSequoia McDowell
it wasn't clear before that if given the same name a second time this method RETRIEVES an EXISTING module. Not even sure if my description is accurate, hoping someone will either confirm and merge or clear it up. Closes #3666
2013-08-21docs(tutorial): fix links in step 00Igor Minar
2013-08-21Update step_00.ngdocYang Pengcheng
the <a> is incorrect. there is no space between "a" and "href"
2013-08-21docs(tutorial): update step_07.ngdocrodbv
"Orthogonal" is a strange word for those without a mathematical/CS background. "Independent" is clearer. Closes #3641
2013-08-21fix($sce): allow IE7 standards mode to pass non-quirks mode testjustinrknowles
Changes documentMode test version to 7 in order to support IE 8 in IE 7 standards mode while still protecting against quirks mode. documentMode returns the following values: 5 - quirks mode, 7 - IE 7 standards mode, 8 - IE 8 standards mode. Closes #3633 Closes #3646
2013-08-20fix(docs): fix diagram in tutorial/step_02Nepoxx
Removes whitespace before image tag as it caused it to be interpreted as a code block. Closes #3668
2013-08-20fix(package.json): add a repository fieldMichał Gołębiowski
The `npm install` command complains about the missing repository field. Closes #3674
2013-08-20fix(ngTransclude): clear the translusion point before transcludingIgor Minar
when the transluded content is being teleported to the translusion point, we should ensure that the translusion point is empty before appending otherwise we end up with junk before the transcluded content
2013-08-20fix(ngTransclude): make the transclusion available to parent post-linkIgor Minar
previously the translusion was appended the the ngTranslude element via $evalAsync which makes the transluded dom unavailable to parent post-linking functions. By appending translusion in linking phase, post-linking functions will be able to access it.
2013-08-20fix(ngdocs): use cdn version to generate link to source filesJames Daily
Closes #3616 Closes #3675
2013-08-20docs(sce,urlutils): update table to use marked syntaxChirayu Krishnappa
Commit 258cae83dc1a03b6b878a7b4236c499288cd2624 replaced Showdown with marked.
2013-08-19fix($sniffer): ensure older versions of webkit work for animationsMatias Niemelä
2013-08-19revert(ngView): remove ngView manual transclusion systemMatias Niemelä
2013-08-19revert(ngInclude): remove ngInclude manual transclusion systemMatias Niemelä
2013-08-19fix(bower): upgrade to v1.2.0 with fixes we needIgor Minar
2013-08-16style(docs): replace CRLF by LF in svg header logoReto Aebersold
2013-08-16docs($sce): fix parseAsHtml linkMisha Moroshko
2013-08-16fix(docs): wrap error message text inside boxKen Sheedlo
2013-08-16fix($injector): don't parse fns with no argsIgor Minar
When annotating a fn, it is wasteful to try to parse a fn that has no arguments as such fn has no injectable dependencies
2013-08-16chore(ngdocs): disable google analytics in e2e testsIgor Minar
GA is not needed during e2e tests, so I'm removing it to speed up the e2e test suite. See previous commits for more info.
2013-08-16chore(ngdocs): disable code prettification in e2e testsIgor Minar
code prettification is expensive and not needed for e2e tests, so I'm disabling it to speed up the e2e test suite. this is a temporary measure, see previous commit for more info.
2013-08-16chore(ngdocs): disable lunr search during e2e testsIgor Minar
lunr has been responsible for slowdown in our test suite by adding ~1sec per end-to-end test. (this is because it initializes the index when the app starts) since out test suite primarily tests the examples, it's reasonable do disable the search as a temporary meansure. the real fix is to use protractor and extract all of the examples into standalone apps which can be tested without bootstrapping the whole docs app.
2013-08-15fix(filter): filter on false propertiesTom Dunstan
Code was evaluating !expression[key] while attempting to see if the key was present, but this was evaluating to true for false values as well as missing keys. Closes #2797.
2013-08-15fix($parse): handle promises returned from parsed function callsJussi Kosunen
When a parsed function call returns a promise, the evaluated value is the resolved value of the promise rather than the promise object. Closes #3503
2013-08-15feat(minerr): log minerr doc url in developmentKen Sheedlo
Closes #3566
2013-08-15fix(grunt): fix regex in grunt util to handle pre-release versionsBrian Ford
NOTE: this also includes a temporary work-around for Bower
2013-08-15chore(minerr): move $sce:insecurl file to sce directoryKen Sheedlo
Closes #3568
2013-08-15chore(bower): upgrade bower 1.0.3 -> 1.1.2Igor Minar
2013-08-15chore(Grunt): upgrade ng-closure-runner to 0.2.2Ken Sheedlo
Closes #3554
2013-08-15style($route): make some jshint recommended changesJosh Taylor
Syntax changes: - ternary indentation - remove unused variable, N - use triple equals instead of double Closes #3559
2013-08-15docs($route): add hint for ngRoute module inclusionReto Aebersold
Closes #3583
2013-08-15docs($cookies): add info about angular-cookies.jsRob Dodson
per the [top comment here](http://docs.angularjs.org/api/ngCookies.$cookies#comment-912064775) updating documentation so it matches [$resource](http://docs.angularjs.org/api/ngResource.$resource) and instructs the user to include the `angular-cookies.js` and load `ngCookies`. Closes #3607