Skip to content

Commit

Permalink
fix (#13714)
Browse files Browse the repository at this point in the history
  • Loading branch information
NinjaPikachuska authored Jan 10, 2025
1 parent b17704f commit 98d099c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nano/js/nano_utility.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ var NanoUtility = function ()
queryString += key + '=' + parameters[key];
}
}
return queryString;
return 'byond://' + queryString;
}
}
} ();
Expand All @@ -48,7 +48,7 @@ if (typeof jQuery == 'undefined') {
}
if (typeof doT == 'undefined') {
alert('ERROR: Template engine failed to load!');
}
}

// All scripts are initialised here, this allows control of init order
$(document).ready(function () {
Expand Down Expand Up @@ -158,4 +158,4 @@ if (!String.prototype.ckey) {
String.prototype.ckey = function () {
return this.replace(/\W/g, '').toLowerCase();
};
}
}

0 comments on commit 98d099c

Please sign in to comment.