This commit is contained in:
Vladimir Agafonkin 2013-04-19 18:13:37 +03:00
parent 5647f37ae6
commit b0d3e8bc25

View File

@ -39,7 +39,7 @@ L.Util = {
if (typeof obj === 'object') {
args = Array.prototype.slice.call(arguments, 3);
for (var i in obj) {
for (i in obj) {
if (obj.hasOwnProperty(i)) {
method.apply(context, [i, obj[i]].concat(args));
}