Fix #3311, NanoUtility JavaScript errors

This commit is contained in:
Tigercat2000
2016-01-21 16:31:49 -08:00
parent ac6a004421
commit bfc6d7a233
2 changed files with 3 additions and 3 deletions
+1 -1
View File
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -49,7 +49,7 @@ var NanoUtility = function () {
secondVal = second[key];
if (secondVal && Object.prototype.toString.call(secondVal) === "[object Object]") {
first[key] = first[key] || {};
return util.extend(first[key], secondVal);
return NanoUtility.extend(first[key], secondVal);
} else {
return first[key] = secondVal;
}
@@ -73,7 +73,7 @@ var NanoUtility = function () {
command: "nanoclose " + _urlParameters.src
};
this.winset("is-visible", "false");
return location.href = util.href("winset", params);
return location.href = NanoUtility.href("winset", params);
}
}
} ();