Updated docs for --cleanup, #394

This commit is contained in:
Rhet Turnbull
2021-03-14 12:16:26 -07:00
parent ffb9af1965
commit 17ac5949e1
21 changed files with 2753 additions and 477 deletions

View File

@@ -29,9 +29,14 @@ if (!window.console || !console.firebug) {
/**
* small helper function to urldecode strings
*
* See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL
*/
jQuery.urldecode = function(x) {
return decodeURIComponent(x).replace(/\+/g, ' ');
if (!x) {
return x
}
return decodeURIComponent(x.replace(/\+/g, ' '));
};
/**