aboutsummaryrefslogtreecommitdiffstats
path: root/src/apis.js
AgeCommit message (Collapse)Author
2011-03-26remove _null and _undefinedIgor Minar
they have no significant effect on minified and gziped size. in fact they make things worse. file | before | after removal ---------------------------------------- concat | 325415 | 325297 min | 62070 | 62161 min + gzip | 25187 | 25176 The bottom line is that we are getting 0.05% decrease in size after gzip without all of the hassle of using underscores everywhere.
2011-03-05fix orberBy documentation errorMisko Hevery
2011-03-03fixing broken e2e testsIgor Minar
2011-02-16reformated multiline trinary expressions to have a leading ?/:.Misko Hevery
2011-02-01changed the documentation @example to use <doc:example>Misko Hevery
2011-01-18fixes, examples and tests for angular.Object.* docsIgor Minar
2011-01-18various doc fixes for angular.Array.* apis + example and spec limitToIgor Minar
2011-01-10Rename angular.foreach to angular.forEach to make the api consistent.Igor Minar
camelcase is used for other angular functions and forEach is also used by EcmaScript standard. - rename the internal as well as the external function name - tweak the implementation of the function so that it doesn't clober it self when we extend the angular object with an object that has a forEach property equal to this forEach function Closes #85
2010-12-06fixing closure compiler warningsIgor Minar
2010-12-06fix the angular.Array.orderBy example + add docsIgor Minar
2010-12-06fixing lint warnings in older codeIgor Minar
2010-11-24docs for angular.Object and angular.Object.equalsIgor Minar
2010-11-24adding Note section to angular.Array.* where it was missingIgor Minar
2010-11-24docs for angular.Array.sumIgor Minar
2010-11-23docs for angular.Array.filterIgor Minar
2010-11-23docs for angular.Array.removeIgor Minar
2010-11-23docs for angular.Array.removeIgor Minar
2010-11-23docs for angular.Array.orderByIgor Minar
2010-11-23docs for angular.Array.countIgor Minar
2010-11-23adding docs for angular.Array.addIgor Minar
2010-11-22placeholder docs for all angular.Array functionsIgor Minar
2010-11-22Add angular.Array.limitTo and docs for angular.ArrayIgor Minar
2010-11-08make angular.String.toDate consider all time fractions as optionalIgor Minar
2010-11-08angular.Date.toString should use toISOString if availableIgor Minar
2010-11-08Support ISO 8601 extended datetime format troughout angular.Igor Minar
Support ISO 8601 extended format datetime strings (YYYY-MM-DDTHH:mm:ss.SSSZ) as defined in EcmaScript 5 throughout angular. This means that the following apis switched from YYYY-MM-DDTHH:mm:ssZ to YYYY-MM-DDTHH:mm:ss.SSSZ (note the added millis) when representing dates: - angular.Date.toString - angular.String.toDate - JSON serialization and deserialization (used by json filter, $xhr and $resource)
2010-11-08Add isDate method + fix old codeIgor Minar
2010-10-26Reverted change 841013a4c4d25acf6fc9ff40e449c3d0a4b82ec3 which does not work ↵Misko Hevery
on all browsers
2010-10-26Simplify implementation of angular.String.toDate()Igor Minar
2010-09-26Added support for functions to $orderBy methodMisko Hevery
http://github.com/angular/angular.js/issues#issue/23
2010-08-18stringify names for better compression, remove dead functions, removed ↵Misko Hevery
underscore.js compatibility
2010-08-11removed undocumented/unneeded methods from Array APIMisko Hevery
2010-07-20fixed xhtml compatibility, fix console in chromeMisko Hevery
2010-07-19added equals method to angular.equals and $equalsMisko Hevery
2010-05-30imrove $orderBy performanceMisko Hevery
2010-05-30use expressionCompile function directlyMisko Hevery
2010-05-30compiler exposos both self and this function calling conventionMisko Hevery
2010-05-30improve error handling with elementsMisko Hevery
2010-05-30remove the uneeded call to createScope when evaluating expressionsMisko Hevery
2010-04-09various bug fixesMisko Hevery
2010-03-29dissabled a lot of tests, and made the core test set pass.Misko Hevery
2010-03-26moved all uneeded files out, widgets.html works, tests horribly brokenMisko Hevery