aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2012-11-11chore(validate-commit-msg): recognize 'revert' as valid commit typeIgor Minar
2012-11-11docs(angular.module): improve angular.Module#run docsHaralan Dobrev
2012-11-11docs(guide): fix run-on sentence in modules guideJamison Dance
2012-11-11docs(tutorial): change module name in step-7Jamison Dance
2012-11-11docs($timeout): set return type to Promise instead of *.Wes Alvaro
The cancel function accepts a Promise, but the timeout function fails to specify returning a Promise.
2012-11-11docs(ngList): fix typoJosh Adams
2012-11-11docs(encodeUriSegment): fix typoJosh Adams
2012-11-11docs(guide/directive): fix names in scope '='; easier to grokTim Macfarlane
2012-11-11docs(ngHide): Fix typo and make it more in line with ngShowChristian Vuerings
2012-11-08chore(docs): fix docs-scenario.htmlIgor Minar
2012-11-08chore(docs): remove obsolete gae filesIgor Minar
2012-11-05docs(directive): fix typoMiško Hevery
2012-10-31chore(testacular): use local testacular versionSudhir Jonathan
Making testacular a dependency to avoid having to install it globally. (Causes npm issues on some machines)
2012-10-31fix(select): select option with a label of 0 is not shownSudhir Jonathan
Bug caused by the use of the `||` operator to replace all non-truthy values with an empty string. Changed to replace only `undefined` values. Closes #1401
2012-10-31chore(validate-commit-msg): allow '/' in scopeIgor Minar
2012-10-31docs(guide/location): fix table formattingFred Sauer
Fix table formatting so headings are bold, rows are separated by lines, and rows have :hover style
2012-10-31docs(module): fix typo in exampleTim Macfarlane
fixed example app, `simpleAppModule` should have been `myAppModule`.
2012-10-31chore(injector): fix typo in injector documentationsqwishy trick
2012-10-31fix(scenario-runner): support data-ng and x-ng based attributesAdam Macejak
Prefixed attributes like data-ng-model and x-ng-model were not being found by the Selector. It was only looking at ng: and ng- prefixed attributes. Added a few tests as well to ensure the aforementioned prefixed attributes are being matched properly. Closes #1020
2012-10-31docs(contribute): fix task name for continuous testingDaniel Luz
2012-10-31fix(docs): correctly generate filenames for plunkr/fiddleIgor Minar
previously examples like $http where broken because we would strip part of the filename (http-hello.html -> http) we really want to strip only the id suffix that we append to disambiguate common filenames (like index.html) which appear in many examples.
2012-10-31feat(docs): add plunkr supportShyam Seshadri
Add option to edit source in Angular Docs in Plunkr in addition to JsFiddle
2012-10-31fix(doc): typo on FAQDaniel Luz
Closes #1493
2012-10-29fix($compile): don't look for class directives in empty stringIgor Minar
if className is undefined or empty string, don't bother looking for directives in there
2012-10-29fix($compile): compilation should not recurse into empty nodesIgor Minar
if a node doesn't have children then don't try to compile these non-existent children
2012-10-29style($compile): better fn names for debuggingIgor Minar
2012-10-29refactor($compile): simplify nodeLinkFnIgor Minar
2012-10-29fix($compile): prevent double attr interpolation w/ templateUrlIgor Minar
This fixes the issue that caused two attr interpolation observers to be registered for the same attribute as a result of isolate scope definition with attr (@) property for this attribute. Duplicate observers would then fight with each other updating the model. The issue occured only when this directive was used in a repeater because that's when we clone the template node which caused the two observers to point to two different sets of $attr instances. Closes #1166, #836
2012-10-29fix(currency): Handle not-quite-zero valuesBraden Shepherdson
IEEE 754 floating point sometimes results in values that are very small, rather than zero. One example is 1.0 + 1.07 - 2.07, which returns 4.440892098500626e-16 instead of 0. This change tweaks the number formatting logic so that an exponential value with a negative exponent that is larger than the precision+1 returns 0 instead. For example: with precision 2, anything with an exponent of -4, -5 or more would become 0. 9e-3 = 0.009 = 0.01, but 9e-4 = 0.0009 = 0.001 = 0.00. This detail is unlikely to matter since this quirk is usually only triggered with values very close to zero. Closes #1469
2012-10-29doc(faq): Add Common Pitfalls sectionBraden Shepherdson
Describes several common pitfalls new users of Angular fall into that I've observed in #angularjs.
2012-10-29doc(faq): Fix minor spelling and wording errorsBraden Shepherdson
2012-10-29chore(check-size.sh): fix rake targetIgor Minar
2012-10-19docs(contribute): add CLA note to code submission sectionIgor Minar
2012-10-19docs(contribute): add visible link to github projectIgor Minar
2012-10-18chore(validate-commit-msg): allow * and - in scope stringIgor Minar
2012-10-18chore(jasmine): remove Jasmine from our repoIgor Minar
it's bundled with Testacular, so we don't need it here
2012-10-18chore(jstd): remove JsTestDriver from our repoIgor Minar
Testacular FTW!
2012-10-18docs(tutorial): replace JsTD with Testacular + drop snapshotsIgor Minar
JsTD references have been replaced with Testacular stuff. snapshots are PITA to maintain so I'm dropping them, everyone loves the Git version anyway.
2012-10-17chore(Rakefile): remove test_out dir when cleaningIgor Minar
2012-10-17chore(Rakefile): tune JVM for closure compilerIgor Minar
Using the client VM and forcing 32bit mode gives us huge perf boost. before: reali 0m8.173s user 0m39.984s sys 0m1.408s after: real 0m3.000s user 0m12.687s sys 0m0.852s
2012-10-17chore(Rakefile): paralelize closure compilationIgor Minar
this speeds up the build by paralelizing closure compilation (the slowest piece of the build process) before: real 0m14.372s user 0m31.649s sys 0m1.006s after: real 0m8.191s user 0m40.473s sys 0m1.378s
2012-10-17chore(test): add junit config for testacularVojta Jina
2012-10-17chore(Rakefile): misc_options should support + -> , conversionIgor Minar
2012-10-17chore(Rakefile): use exec for webserverIgor Minar
exec unlike system replaces the current process. this way when we kill the webserver process we don't get scary looking 'rake aborted' error
2012-10-08fix(doc): disable directory listing in docs.angularjs.orgMisko Hevery
2012-10-05chore: add travis configVojta Jina
2012-10-05docs(downloading): update the downloading docsIgor Minar
2012-09-22fix($compile): reference local in isolate scopeVojta Jina
This was really corner case: Watcher needs to return changed value, to notify that model might have changed and one more $digest cycle needs to be performed. The watcher, that takes care of reference binding into an isolate scope ("="), did not return changed value, if the change was from the isolate scope to the parent. If any other watcher returned change, it worked fine, as this change caused re-digest. Closes #1272
2012-09-17docs(README): update README.md with new rake tasksIgor Minar
2012-09-17chore(Rakefile): fix test:jquery taskIgor Minar