code reformat

This commit is contained in:
6543 2019-08-27 16:17:53 +02:00
parent 6ee0d1a7a5
commit 9dcc74c22f
Signed by: 6543
GPG Key ID: A1CA74D27FD13271
1 changed files with 29 additions and 33 deletions

View File

@ -6,22 +6,18 @@
Credits to Stuart Langridge, http://www.kryogenix.org/code/browser/sortt/ and its contributors Credits to Stuart Langridge, http://www.kryogenix.org/code/browser/sortt/ and its contributors
*/ */



//safe url sort param global

window.sortt_url=window.location.search;

if (window.sortt_url.indexOf("sort=") < 0) {

//safe url sort param global
window.sortt_url=window.location.search;
if (window.sortt_url.indexOf("sort=") < 0) {
//no sort url argument found //no sort url argument found
window.sortt_url=""; window.sortt_url="";


} else { } else {
window.sortt_url=window.sortt_url.substr(window.sortt_url.indexOf("sort=")+5); window.sortt_url=window.sortt_url.substr(window.sortt_url.indexOf("sort=")+5);
window.sortt_url=window.sortt_url.substr(0,window.sortt_url.indexOf("&")); window.sortt_url=window.sortt_url.substr(0,window.sortt_url.indexOf("&"));
} }
//creat global function with main routine //creat global function with main routine
window.sortt_f=function(sort_atr){ window.sortt_f=function(sort_atr){
//sortTable [sort attribute] //sortTable [sort attribute]


if (sort_atr.length = 0) return; if (sort_atr.length = 0) return;
@ -43,4 +39,4 @@
// look at ReadMe // look at ReadMe
console.log("sortTable() normsort:\"" + normsort + "\" revsort:\"" + revsort + "\" sortdefault:\"" + sortdefault + "\""); console.log("sortTable() normsort:\"" + normsort + "\" revsort:\"" + revsort + "\" sortdefault:\"" + sortdefault + "\"");


}; };