mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-21 20:13:45 +01:00
Merge pull request #3322 from tigercat2000/i_somehow_keep_forgetting_to_make_branches
Fix #3311, NanoUtility JavaScript errors
This commit is contained in:
+1
-1
File diff suppressed because one or more lines are too long
@@ -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);
|
||||
}
|
||||
}
|
||||
} ();
|
||||
|
||||
Reference in New Issue
Block a user