Elgg  Version 2.3
prototypes.js
Go to the documentation of this file.
1 
13 if (!Array.prototype.every) {
14  Array.prototype.every = function(callback) {
15  var len = this.length, i;
16 
17  for (i = 0; i < len; i++) {
18  if (i in this && !callback.call(null, this[i], i)) {
19  return false;
20  }
21  }
22 
23  return true;
24  };
25 }
26 
39 if (!Array.prototype.forEach) {
40  Array.prototype.forEach = function(callback) {
41  var len = this.length, i;
42 
43  for (i = 0; i < len; i++) {
44  if (i in this) {
45  callback.call(null, this[i], i);
46  }
47  }
48  };
49 }
50 
58 if (!String.prototype.ltrim) {
59  String.prototype.ltrim = function(str) {
60  if (this.indexOf(str) === 0) {
61  return this.substring(str.length);
62  } else {
63  return this;
64  }
65  };
66 }
i
Definition: admin.css.php:47