aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2013-07-13chore(package.json): fix name to work with latest NPMVojta Jina
2013-07-12fix($http): allow interceptors to completely override headersIgor Minar
Closes #2770
2013-07-12chore(ngdoc): wrap all pages inside of a container tag for easy stylingMatias Niemelä
2013-07-12feat(Angular.js): skip JSON.stringify for undefinedGreg Thornton
Return early in `angular.toJson` if the object to be stringified is `undefined`. IE8 stringifies `undefined` to `'undefined'` whereas other browsers return `undefined`. This normalizes behavior and passes currently broken unit tests in IE8.
2013-07-12style(ngdocs): fix minor CSS issuesAlex Olshansky
2013-07-12feat($resource): support an unescaped URL portLeandro Ostera
The colon character is used to identify parameters in $resource. This meant that we had to escape the colon used in a port. It turns out that this is not necessary if we assume that parameter names cannot consist of only digits. If the parameter consists only of numbers, then it's a port. Closes #2778
2013-07-12fix(ngScenario): select().option(val) should prefer exact value matchStephen Merity
With select(...).option(val) it previously would select the first node which contains the value, even if an exact match was available. This fix prefers exact matches if available, otherwise it reverts to the previous 'contains' behaviour for backwards compatibility. Closes #2856
2013-07-12fix(sanitize): match URI schemes case-insensitivelyPete Bacon Darwin
According to RFC 3986 (http://tools.ietf.org/html/rfc3986#section-3.1) schemes such as http or mailto are case-insensitive. So links such as http://server/ and HTTP://server/ are valid and equivalent. Closes #3210
2013-07-11fix(ngSubmit): expose $event to ngSubmit callbackWesley Cho
2013-07-11fix(ngValue): made ngValue to write value attribute to elementMikk Kirstein
2013-07-11feat(ngDocs): add links to source for APIJulien Bouquillon
- add tests - the link points to the gruntUtil.getVersion().number tree on github
2013-07-11fix(scope): watches can be safely unregistered inside watch handlersPaulo Scardine
Closes #2915
2013-07-11style(sanitize): fix typo in variable namesBen Holley
2013-07-11refactor(Angular.js): remove code duplicationEric Subach
Closes #2890
2013-07-11fix($injector): improve $injector:nomod error messageIgor Minar
Closes #2695
2013-07-11chore(build): add check for merge conflicts, ddescribe, and iitBrian Ford
2013-07-11test(ngList): remove disabled testIgor Minar
this test fails and we don't have intentions on making it pass since we never made a commitment to implement this feature.
2013-07-11docs(ngList): fix example and add e2e testIgor Minar
2013-07-10docs(guide): clarify examplesdesmond
2013-07-10docs(guide): example filter does not conditionally assign a colorsdesmond
2013-07-10docs(guide/di): fix typoRobert Fauver
2013-07-10docs(contribute): improve git instructionsTay Ray Chuan
2013-07-10docs(overview): fix typoLefteris Paraskevas
Removed repeated "the" in the sentence: The input invalidates itself by turning red when you enter invalid data or leave "the" the input fields blank (Line 137).
2013-07-10style(input): remove wsIgor Minar
2013-07-10docs(ngMock): correct verifyNoOutstandingExpectation exampleMark Striemer
2013-07-09fix(ngdocs): merge duplicate css class attributesAlex Olshansky
2013-07-09docs(angular.identity): fix missing 'angular' in identity functionMarco Vito Moscaritolo
2013-07-08feat($http): accept function as headers valuebolasblack
So we can request with dynamic header value. module.factory('Res', [ '$resource' '$routeParams' 'globalConfig' function($resource, $routeParams, globalConfig) { resource('/url/:id', {id: "@id"}, { patch: { method: 'patch', headers: { 'Authorization': function() { return "token " + globalConfig.token; } } } }); }]);
2013-07-08docs(ngModelController): provide a more intuitive examplePete Bacon Darwin
The example directive, using contenteditable was not showing required even if you cleared the content from it. Closes #3156
2013-07-08docs(numberFilter): fix explanation of default fraction sizePete Bacon Darwin
The default fraction size for the number filter is actually computed from the `NUMBER_FORMATS.PATTERNS.maxFrac` value in the current locale. Closes #3157
2013-07-08fix(angular.equals): do not match keys defined in the prototype chainDaniel Luz
Merely testing for object[key] will give incorrect results on keys defined in Object.prototype. Note: IE8 is generally broken in this regard since `for...in` never returns certain property keys even if they are defined directly on the object. See #2141 - partially merges this PR
2013-07-08chore(grunt): tweak ng-closure-runner setupPete Bacon Darwin
2013-07-07docs(guide/e2e-testing): fix typostgkokk
2013-07-04docs(input): ng-model doesn't work well with isolated scope directivebasarat
Closes #3123
2013-07-04docs(guide/directive): make directive controller minification-safeAndrew O'Brien
It is best to emphasize that the "controller" property needs to be min safe Closes #3125
2013-07-03fix($compile): empty normalized href should pass sanitation checkAnders Hessellund Jensen
Sometimes IE returns an empty string for its normalized href on a tags. This should pass the sanitation check in $compile. Closes #2219, #2593
2013-07-03fix(grunt): Give java 2g of memoryLucas Galfasó
Give the java build process 2g of memory
2013-07-03fix(i18n): Do not transform arrays into objectsLucas Galfasó
Do not trasnform arrays into objects when generating the locale objects Add unit test for this check
2013-07-03fix($sniffer): detect transition/animation on older Android browsersJulien Bouquillon
The stock Android browser doesn't support the current for-in body/style detection for animations and transitions but we can manually fix this. This is useful for PhoneGap web-views or traditional web-apps using the stock browser.
2013-07-03refactor(core): use native String.prototype.trim if availableSebastian Müller
2013-07-03fix($parse): disallow access to Function constructorChirayu Krishnappa
Enhances sandboxing of Angular Expressions to prevent attacks via: {}.toString.constructor(alert("evil JS code"))
2013-07-02fix(jqLite): prepend array in correct orderJoao Sa
Match jQuery behavior when prepending array into empty element
2013-07-02fix(ngCloak): hide element even when CSS 'display' is setVineet Kumar
Previously an element like <div class="foo ng-cloak">...</div> would still be annoyingly visible if it matched a CSS rule like .foo { display: inline-block; }, overriding ng-cloak's display: none.
2013-07-02docs(tutorial/step9): formatted Unicode character lineexex zian
Add tick and cross mark corresponding to their respective unicodes.
2013-07-02fix(bower): Use latest ng-closure-runnerKen Sheedlo
2013-07-02fix($compile): prevent infinite loop w/ replace+transclude directivesIgor Minar
Previously if a template contained a directive that had a template (sync or async) and the directive template was to replace the original element and the directive template contained another directive on the root element of this template and this new directive was an element transclude directive then an infinite recursion would follow because the compiler kept on re-adding and reapplying the original directive to the replaced node. This change fixes that. Closes #2155
2013-07-02revert: fix(compiler): corrects component transclusion on ...Igor Minar
This reverts commit 15e1a29cd08993b599f390e83a249ec17f753972. The original commit was fixing two issues - one of them was preventing attributes that triggered directives that replaced the compiled node to be merged into the new node. This change was a breaking change (as seen in the diff of the tests in this commit) and that's why it's being removed. A proper fix will follow.
2013-07-02chore(grunt-utils): remove unnecessary quotes from minerr_urlPete Bacon Darwin
The quotes were causing the minerr processing to fail on Windows
2013-07-02chore(travis): speed up the buildVojta Jina
- parallelize the tasks - cache requests (e2e tests) This reduces the time from ~18min to ~12min. It makes the output little messy. We could buffer output of each task and display it once it's fully finished, nicely. I think giving instant feedback is better.
2013-07-02chore(grunt-utils): fix java classpath on WindowsPete Bacon Darwin