aboutsummaryrefslogtreecommitdiffstats
path: root/src/apis.js
AgeCommit message (Collapse)Author
2014-02-26docs(*): fix jsdoc type expressionsPeter Bacon Darwin
These errors in the docs were preventing some parts of the docs from being parsed.
2013-03-29feat(ngRepeat): add support for custom tracking of itemsMisko Hevery
BREAKING CHANGE: It is considered an error to have two items produce the same track by key. (This was tolerated before.)
2012-11-26fix(ngRepeat): attempt to simplify and improve existing fix for #933Igor Minar
I'm keeping this in for future reference. The issue with this solution is that if we shift() the first item in the array, the whole repeater DOM will be rebuilt from scratch, we need to do better than that.
2012-09-06fix(ngRepeat): now works with primitive typesZhenbo Zhang
closes #933
2012-08-31revert: fix(ng-repeat) to work with primitive typesIgor Minar
this was accidentaly merged in. the commit is not ready yet and we don't have CLA signature. This reverts commit 98d489712eff7559bce87ae53bd242112a875c1a.
2012-08-30fix(ng-repeat) to work with primitive typesZhenbo Zhang
2012-01-06fix(ng:repeat): support repeating over array with nullIgor Minar
typeof null == 'object', but it doesn't behave like an object because its properties can't be dereferenced, so we need to special-case it. Closes #702
2011-11-14doc(AUTO, NG_MOCK): Documenting the AUTO and NG_MOCK moduleMisko Hevery
2011-11-14refactor(api): remove type augmentationMisko Hevery
BREAK: - remove angular.[Object/Array/String/Function] - in templates [].$filter(predicate) and friends need to change to [] | filter:predicate
2011-11-14refacter(filters): convert filter/limitTo/orderBy from type augmentation to ↵Misko Hevery
filters
2011-11-14refactor(json): break dependence on api.jsMisko Hevery
2011-10-26style(HashQueueMap): fixing a typo in the commentIgor Minar
2011-10-11chore(formating): clean code to be function() {Misko Hevery
2011-10-11feat(forms): new and improved formsMisko Hevery
2011-10-11feat(ng:repeat) collection items and DOM elements affinity / stabilityMisko Hevery
2011-10-05fix($limitTo): properly handle excessive limitsTEHEK Firefox
`angular.Array.limitTo`'s result should not exceed original input array size Closes #571
2011-08-24doc(API): various API documentation improvementsToni Thompson
2011-08-15style(*): remove extra semicolonsIgor Minar
2011-08-06style($function): replace $function with 'function'Igor Minar
2011-08-02feat(scope): new and improved scope implementationMisko Hevery
- Speed improvements (about 4x on flush phase) - Memory improvements (uses no function closures) - Break $eval into $apply, $dispatch, $flush - Introduced $watch and $observe Breaks angular.equals() use === instead of == Breaks angular.scope() does not take parent as first argument Breaks scope.$watch() takes scope as first argument Breaks scope.$set(), scope.$get are removed Breaks scope.$config is removed Breaks $route.onChange callback has not "this" bounded
2011-07-18feat(strict mode): adding strict mode flag to all js filesIgor Minar
the flag must be in all src and test files so that we get the benefit of running in the strict mode even in jstd the following script was used to modify all files: for file in `find src test -name "*.js"`; do echo -e "'use strict';\n" > temp.txt cat $file >> temp.txt mv temp.txt $file done
2011-06-30fix:docs: fix $orderBy example and e2e testIgor Minar
2011-06-23fix:$orderBy - return unsorted array if no predicateMisko Hevery
Closes #399
2011-06-08Refactor injector to have invoke method for speed reasonsMisko Hevery
2011-06-08Added HashMapMisko Hevery
2011-06-06api doc fixes from kenIgor Minar
2011-06-03fixed opera date.toISOString issueDi Peng
Closes #365
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