aboutsummaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2010-09-16Allow angular to be included with query parameters. This is a commonAlkis Evlogimenos
pattern for forcing a reload of the script in the browser irrespective of the cache settings the host has.
2010-09-16Delete requests on resources pass this as data. Delete requests should not ↵Misko Hevery
be passing data in the body of the response. The bug is here: http://github.com/angular/angular.js/blob/master/src/Resource.js#L119 Instead of checking for !isGet you should be checking for !isPost. Also isPost should be isPostOrPut since only on those two methods should be sending a payload if I am not mistaken.
2010-09-16removed unneeded commentMisko Hevery
2010-09-14mergeMisko Hevery
2010-09-14Fixed all trivial jslint violationsMisko Hevery
2010-09-14Adding cookie serviceMisko Hevery
- Browser.cookies() - MockBrowser - $cookie service - $sessionStore
2010-09-06removed accidental assignment of $element to glabal spaceMisko Hevery
2010-08-18remove Parser staticMisko Hevery
2010-08-18converted lexer from function to closureMisko Hevery
2010-08-18move static field from Lexer to hidden namespaceMisko Hevery
2010-08-18stringify names for better compression, remove dead functions, removed ↵Misko Hevery
underscore.js compatibility
2010-08-18added better handling of ng:format=numberMisko Hevery
2010-08-16fix for ng:include does not remove partial if src goes to undefinedIgor Minar
2010-08-16Merge remote branch 'upstream/master'Igor Minar
2010-08-16removing useless catch that causes troubles when FF throws exceptions within ↵iminar
the loop but outside of the try/catch clause
2010-08-14Merge remote branch 'igor/master'Misko Hevery
2010-08-14pull shyamMisko Hevery
2010-08-13Fix issue with jquery not being visible in productionShyam Seshadri
2010-08-13Serialize only own properties to avoid infinite loops when serializing ↵Igor Minar
scopes (this)
2010-08-14Provide all jquery functions as futuresShyam Seshadri
2010-08-13Provide all jquery functions as futuresShyam Seshadri
2010-08-13Revert click dsl, since what is returned by element is a jquery objectShyam Seshadri
2010-08-13Pull in Rajat's changes to add click and url checking dslShyam Seshadri
2010-08-13initial perf testingMisko Hevery
2010-08-13Revert click dsl, since what is returned by element is a jquery objectShyam Seshadri
2010-08-13Pull in Rajat's changes to add click and url checking dslShyam Seshadri
2010-08-11Merge branch 'master' of github.com:angular/angular.jsMisko Hevery
2010-08-11clean up for better obfuscationMisko Hevery
2010-08-12Fix toEqual matcher to use angular.equals instead of simple == comparison, ↵Shyam Seshadri
which breaks down for arrays and objects
2010-08-11removed undocumented/unneeded methods from Array APIMisko Hevery
2010-08-11Fix toEqual matcher to use angular.equals instead of simple == comparison, ↵Shyam Seshadri
which breaks down for arrays and objects
2010-08-11Merge branch 'master' of github.com:angular/angular.jsMisko Hevery
2010-08-11removed google charts and few other filters, switched to simple optimization ↵Misko Hevery
for compiler
2010-08-12modify element dsl to understand angular bindings and return jquery object ↵Shyam Seshadri
for further checking
2010-08-11modify element dsl to understand angular bindings and return jquery object ↵Shyam Seshadri
for further checking
2010-08-12Change repeater dsl to collect and return an array of string contents based ↵Shyam Seshadri
on match
2010-08-10Change repeater dsl to collect and return an array of string contents based ↵Shyam Seshadri
on match
2010-08-10Merge branch 'master' of http://github.com/shyamseshadri/angular.js into shyamMisko Hevery
2010-08-10Fix test breakage in Chrome. Chrome JQuery doesn't like malformed table html ↵Shyam Seshadri
apparently
2010-08-10Merge branch 'master' of github.com:angular/angular.jsMisko Hevery
2010-08-10fix bug where $eval on undefined throws errorMisko Hevery
2010-08-10added additional testMisko Hevery
2010-08-10Inject jquery into future scope, and rename outer scenario to _window, which ↵Shyam Seshadri
is what it is
2010-08-09Add element DSL, to find an element. Has knowledge of finding ng:bind ↵Shyam Seshadri
elements and grabbing their contents.
2010-08-06added repeater.collect to E2E DSLAndres Ornelas
2010-08-05fix build breakage by returning the added futures in the DSLAndres Ornelas
2010-08-05Added new files to Rakefile and consistently used .addFutureAndres Ornelas
2010-08-05compile should take existingScopeMisko Hevery
2010-08-04added MatcherSpecAndres Ornelas
2010-08-04test passing with repeater.countAndres Ornelas