fixed spacing

This commit is contained in:
goldquest 2013-04-17 18:17:14 +02:00
parent 896f72311f
commit 98c43aff43
2 changed files with 13 additions and 13 deletions

View file

@ -82,11 +82,11 @@ window.html10n = (function(window, document, undefined) {
// fix Array.prototype.forEach in IE
if (!('forEach' in Array.prototype)) {
Array.prototype.forEach= function(action, that /*opt*/) {
for (var i= 0, n= this.length; i<n; i++)
if (i in this)
action.call(that, this[i], i, this);
};
Array.prototype.forEach= function(action, that /*opt*/) {
for (var i= 0, n= this.length; i<n; i++)
if (i in this)
action.call(that, this[i], i, this);
};
}
/**