replace tab with spaces

This commit is contained in:
Marc Jansen
2012-04-21 00:14:24 +03:00
parent a57738e817
commit e690f28517

View File

@@ -71,7 +71,7 @@ OpenLayers.Util.isElement = function(o) {
* {Boolean} true if the object is an array.
*/
OpenLayers.Util.isArray = function(a) {
return (Object.prototype.toString.call(a) === '[object Array]');
return (Object.prototype.toString.call(a) === '[object Array]');
};
/**