diff --git a/example/personalLog/personalLog.js b/example/personalLog/personalLog.js
index acaf371e..7be233cb 100644
--- a/example/personalLog/personalLog.js
+++ b/example/personalLog/personalLog.js
@@ -54,7 +54,13 @@ function LogCtrl($cookieStore) {
* @param {object} log The log to remove.
*/
this.rmLog = function(log) {
- angular.Array.remove(logs, log);
+ for ( var i = 0; i < logs.length; i++) {
+ if (log === logs[i]) {
+ logs.splice(i, 1);
+ break;
+ }
+ }
+
$cookieStore.put(LOGS, logs);
};
@@ -73,4 +79,4 @@ LogCtrl.$inject = ['$cookieStore'];
//export
example.personalLog.LogCtrl = LogCtrl;
-})();
\ No newline at end of file
+})();
diff --git a/src/Angular.js b/src/Angular.js
index 17aa2d4a..fcb13881 100644
--- a/src/Angular.js
+++ b/src/Angular.js
@@ -560,6 +560,13 @@ function indexOf(array, obj) {
return -1;
}
+function arrayRemove(array, value) {
+ var index = indexOf(array, value);
+ if (index >=0)
+ array.splice(index, 1);
+ return value;
+ }
+
function isLeafNode (node) {
if (node) {
switch (node.nodeName) {
diff --git a/src/apis.js b/src/apis.js
index 269dc9a1..08120c99 100644
--- a/src/apis.js
+++ b/src/apis.js
@@ -1,453 +1,5 @@
'use strict';
-var angularGlobal = {
- 'typeOf':function(obj){
- if (obj === null) return $null;
- var type = typeof obj;
- if (type == $object) {
- if (obj instanceof Array) return $array;
- if (isDate(obj)) return $date;
- if (obj.nodeType == 1) return 'element';
- }
- return type;
- }
-};
-
-
-/**
- * @ngdoc overview
- * @name angular.Object
- * @function
- *
- * @description
- * A namespace for utility functions used to work with JavaScript objects. These functions are
- * exposed in two ways:
- *
- * * __Angular expressions:__ Functions are bound to all objects and augment the Object type.
- * The names of these methods are prefixed with the '$' character in order to minimize naming
- * collisions. To call a method, invoke the function without the first argument, for example,
- * `myObject.$foo(param2)`.
- *
- * * __JavaScript code:__ Functions don't augment the Object type and must be invoked as functions
- * of `angular.Object` as `angular.Object.foo(myObject, param2)`.
- *
- * * {@link angular.Object.copy angular.Object.copy()} - Creates a deep copy of the source
- * parameter.
- * * {@link angular.Object.equals angular.Object.equals()} - Determines if two objects or values
- * are equivalent.
- * * {@link angular.Object.size angular.Object.size()} - Determines the number of elements in
- * strings, arrays, and objects.
- */
-var angularCollection = {
- 'copy': copy,
- 'size': size,
- 'equals': equals
-};
-var angularObject = {
- 'extend': extend
-};
-
-/**
- * @ngdoc overview
- * @name angular.Array
- *
- * @description
- * A namespace for utility functions for the manipulation of JavaScript Array objects.
- *
- * These functions are exposed in two ways:
- *
- * * __Angular expressions:__ Functions are bound to the Array objects and augment the Array type
- * as array methods. The names of these methods are prefixed with the `$` character to minimize
- * naming collisions. To call a method, invoke myArrayObject.$foo(params).
- *
- * Because Array type is a subtype of the Object type, all angular.Object functions augment
- * the Array type in Angular expressions as well.
- *
- * * __JavaScript code:__ Functions do nor augment the Array type and must be invoked as functions
- * of `angular.Array` as `angular.Array.foo(myArrayObject, params)`.
- *
- * The following APIs are built in to the Angular Array object:
- *
- * * {@link angular.Array.add angular.Array.add()} - Optionally adds a new element to an array.
- * * {@link angular.Array.count angular.Array.count()} - Determines the number of elements in an
- * array.
- * * {@link angular.Array.filter angular.Array.filter()} - Returns the subset of elements specified
- * in the filter as a new array.
- * * {@link angular.Array.indexOf angular.Array.indexOf()} - Determines the index of an array
- * value.
- * * {@link angular.Array.limitTo angular.Array.limitTo()} - Creates a sub-array of an existing
- * array.
- * * {@link angular.Array.orderBy angular.Array.orderBy()} - Orders array elements.
- * * {@link angular.Array.remove angular.Array.remove()} - Removes array elements.
- * * {@link angular.Array.sum angular.Array.sum()} - Sums the numbers in an array.
- */
-var angularArray = {
-
-
- /**
- * @ngdoc function
- * @name angular.Array.indexOf
- * @function
- *
- * @description
- * Determines the index of a `value` in an `array`.
- *
- * Note: This function is used to augment the `Array` type in Angular expressions. See
- * {@link angular.Array} for more information about Angular arrays.
- *
- * @param {Array} array Array to search.
- * @param {*} value Value to search for.
- * @returns {number} The position of the element in `array`. The position is 0-based.
- * If the value cannot be found, `-1` is returned.
- *
- * @example
-
-
-
-
-
- Index of '{{bookName}}' in the list {{books}} is {{books.$indexOf(bookName)}}.
-
-
-
- it('should correctly calculate the initial index', function() {
- expect(binding('books.$indexOf(bookName)')).toBe('2');
- });
-
- it('should recalculate', function() {
- input('bookName').enter('foo');
- expect(binding('books.$indexOf(bookName)')).toBe('-1');
-
- input('bookName').enter('Moby Dick');
- expect(binding('books.$indexOf(bookName)')).toBe('0');
- });
-
-
- */
- 'indexOf': indexOf,
-
-
- /**
- * @ngdoc function
- * @name angular.Array.sum
- * @function
- *
- * @description
- * The `sum` function calculates the sum of all numbers in an `array`. If an `expression` is
- * supplied, `sum` evaluates each element in the `array` with the expression and then returns
- * the sum of the calculated values.
- *
- * Note: This function is used to augment the `Array` type in Angular expressions. See
- * {@link angular.Array} for more info about Angular arrays.
- *
- * @param {Array} array The source array.
- * @param {(string|function())=} expression Angular expression or a function to be evaluated for
- * each element in `array`. The array element becomes the `this` during the evaluation.
- * @returns {number} Sum of items in the array.
- *
- * @example
-
-
-
-
-
-
- //TODO: these specs are lame because I had to work around issues #164 and #167
- it('should initialize and calculate the totals', function() {
- expect(repeater('table.invoice tr', 'item in invoice.items').count()).toBe(3);
- expect(repeater('table.invoice tr', 'item in invoice.items').row(1)).
- toEqual(['$99.50']);
- expect(binding("invoice.items.$sum('qty*cost')")).toBe('$99.50');
- expect(binding("invoice.items.$sum('qty*cost')")).toBe('$99.50');
- });
-
- it('should add an entry and recalculate', function() {
- element('.doc-example-live a:contains("add item")').click();
- using('.doc-example-live tr:nth-child(3)').input('item.qty').enter('20');
- using('.doc-example-live tr:nth-child(3)').input('item.cost').enter('100');
-
- expect(repeater('table.invoice tr', 'item in invoice.items').row(2)).
- toEqual(['$2,000.00']);
- expect(binding("invoice.items.$sum('qty*cost')")).toBe('$2,099.50');
- });
-
-
- */
- 'sum':function(array, expression) {
- var fn = angularFunction.compile(expression);
- var sum = 0;
- for (var i = 0; i < array.length; i++) {
- var value = 1 * fn(array[i]);
- if (!isNaN(value)){
- sum += value;
- }
- }
- return sum;
- },
-
-
- /**
- * @ngdoc function
- * @name angular.Array.remove
- * @function
- *
- * @description
- * Modifies `array` by removing an element from it. The element will be looked up using the
- * {@link angular.Array.indexOf indexOf} function on the `array` and only the first instance of
- * the element will be removed.
- *
- * Note: This function is used to augment the `Array` type in Angular expressions. See
- * {@link angular.Array} for more information about Angular arrays.
- *
- * @param {Array} array Array from which an element should be removed.
- * @param {*} value Element to be removed.
- * @returns {*} The removed element.
- *
- * @example
-
-
-
-
- tasks = {{tasks}}
-
-
- it('should initialize the task list with for tasks', function() {
- expect(repeater('.doc-example-live ul li', 'task in tasks').count()).toBe(4);
- expect(repeater('.doc-example-live ul li', 'task in tasks').column('task')).
- toEqual(['Learn Angular', 'Read Documentation', 'Check out demos',
- 'Build cool applications']);
- });
-
- it('should initialize the task list with for tasks', function() {
- element('.doc-example-live ul li a:contains("X"):first').click();
- expect(repeater('.doc-example-live ul li', 'task in tasks').count()).toBe(3);
-
- element('.doc-example-live ul li a:contains("X"):last').click();
- expect(repeater('.doc-example-live ul li', 'task in tasks').count()).toBe(2);
-
- expect(repeater('.doc-example-live ul li', 'task in tasks').column('task')).
- toEqual(['Read Documentation', 'Check out demos']);
- });
-
-
- */
- 'remove':function(array, value) {
- var index = indexOf(array, value);
- if (index >=0)
- array.splice(index, 1);
- return value;
- },
-
-
-
- /**
- * @ngdoc function
- * @name angular.Array.add
- * @function
- *
- * @description
- * The `add` function in Angualar is similar to JavaScript's `Array#push` method in that it
- * appends a new element to an array. Angular's function differs from the JavaScript method in
- * that specifying a value for the function is optional and the default for the function is an
- * empty object.
- *
- * Note: This function is used to augment the `Array` type in Angular expressions. See
- * {@link angular.Array} for more information about Angular arrays.
- *
- * @param {Array} array The array to be expanded.
- * @param {*=} [value={}] The value to be appended.
- * @returns {Array} The expanded array.
- *
- * @TODO simplify the example.
- *
- * @example
- * This example shows how you can use the `$add` method to populate an initially empty array
- * with objects created from user input.
-
-
-
-
-
-
- beforeEach(function() {
- expect(binding('people')).toBe('people = []');
- });
-
- it('should create an empty record when "add empty" is clicked', function() {
- element('.doc-example-live a:contains("add empty")').click();
- expect(binding('people')).toBe('people = [{\n }]');
- });
-
- it('should create a "John" record when "add \'John\'" is clicked', function() {
- element('.doc-example-live a:contains("add \'John\'")').click();
- expect(binding('people')).toBe('people = [{\n "name":"John",\n "sex":"male"}]');
- });
-
- it('should create a "Mary" record when "add \'Mary\'" is clicked', function() {
- element('.doc-example-live a:contains("add \'Mary\'")').click();
- expect(binding('people')).toBe('people = [{\n "name":"Mary",\n "sex":"female"}]');
- });
-
- it('should delete a record when "X" is clicked', function() {
- element('.doc-example-live a:contains("add empty")').click();
- element('.doc-example-live li a:contains("X"):first').click();
- expect(binding('people')).toBe('people = []');
- });
-
-
- */
- 'add':function(array, value) {
- array.push(isUndefined(value)? {} : value);
- return array;
- },
-
-
- /**
- * @ngdoc function
- * @name angular.Array.count
- * @function
- *
- * @description
- * Determines the number of elements in an array. Provides an option for counting only those
- * elements for which a specified `condition` evaluates to `true`.
- *
- * Note: This function is used to augment the `Array` type in Angular expressions. See
- * {@link angular.Array} for more information about Angular arrays.
- *
- * @param {Array} array The array containing the elements to be counted.
- * @param {(function()|string)=} condition A function to be evaluated or
- * an Angular expression to be compiled and evaluated. The element being
- * iterated over is exposed to the `condition` as `this`.
- * @returns {number} Number of elements in the array. If a `condition` is specified, returns
- * the number of elements whose `condition` evaluates to `true`.
- *
- * @example
-
-
-
-
-
- {{item.name}}: points=
-
-
-
-
Number of items which have one point: {{ items.$count('points==1') }}
-
Number of items which have more than one point:
- {{items.$count('points>1')}}