Merge pull request #3322 from tigercat2000/i_somehow_keep_forgetting_to_make_branches

Fix #3311, NanoUtility JavaScript errors
This commit is contained in:
Fox McCloud
2016-01-21 19:51:36 -05:00
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);
}
}
} ();