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,41 +6,37 @@
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) {
//no sort url argument found
window.sortt_url="";

} else {
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("&"));
}
//creat global function with main routine
window.sortt_f=function(sort_atr){
//sortTable [sort attribute]

if (sort_atr.length = 0) return;

//split sort_atribute in its parts
sortdefault = false;
if ( sort_atr.indexOf("*") == 0 ) {
sortdefault = true;
sort_atr = sort_atr.substr(1);
}
if ( sort_atr.indexOf(",") == -1 ) {
revsort = "";
normsort = sort_atr;
} else {
normsort = sort_atr.substr(0,sort_atr.indexOf(","));
revsort = sort_atr.substr(sort_atr.indexOf(",")+1);
}

//safe url sort param global
window.sortt_url=window.location.search;
if (window.sortt_url.indexOf("sort=") < 0) {
//no sort url argument found
window.sortt_url="";
// look at ReadMe
console.log("sortTable() normsort:\"" + normsort + "\" revsort:\"" + revsort + "\" sortdefault:\"" + sortdefault + "\"");

} else {
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("&"));
}
//creat global function with main routine
window.sortt_f=function(sort_atr){
//sortTable [sort attribute]

if (sort_atr.length = 0) return;

//split sort_atribute in its parts
sortdefault = false;
if ( sort_atr.indexOf("*") == 0 ) {
sortdefault = true;
sort_atr = sort_atr.substr(1);
}
if ( sort_atr.indexOf(",") == -1 ) {
revsort = "";
normsort = sort_atr;
} else {
normsort = sort_atr.substr(0,sort_atr.indexOf(","));
revsort = sort_atr.substr(sort_atr.indexOf(",")+1);
}

// look at ReadMe
console.log("sortTable() normsort:\"" + normsort + "\" revsort:\"" + revsort + "\" sortdefault:\"" + sortdefault + "\"");

};
};