Welcome to IOPWiki, Commander.
With the release of the new game, we encourage contributions to topics related to Girls' Frontline 2. Learn how to contribute, read the maintenance guide, and join our Discord server to discuss major changes.
If you or someone you know can help deciphering the game files, contact our administrator.

MediaWiki:Common.js: Difference between revisions

Welcome to IOP Wiki. This website is maintained by the Girls' Frontline community and is free to edit by anyone.
Jump to navigation Jump to search
No edit summary
m Reverted edits by ReverseIdeology (talk) to last revision by Pianoforte
Line 1: Line 1:
original_onload = window.onload;
if (cell.innerHTML.indexOf("sortheader") < 0) {
 
sortables_init();
window.onload = function() {
// sort the first sortable table; change [0] to sort other tables.
original_onload();
tab = document.getElementsByTagName("table")[0];
if (cell.innerHTML.indexOf("sortheader") < 0) {
// sort by the first column; change [0] to sort by other columns.
sortables_init();
hdr = tab.getElementsByTagName("th")[0];
// sort the first sortable table; change [0] to sort other tables.
// get the sort button link
tab = document.getElementsByTagName("table")[0];
lnk = hdr.getElementsByTagName("a")[0];
// sort by the first column; change [0] to sort by other columns.
ts_resortTable(lnk);
hdr = tab.getElementsByTagName("th")[0];
// get the sort button link
lnk = hdr.getElementsByTagName("a")[0];
ts_resortTable(lnk);
}
}
}

Revision as of 03:47, 27 October 2016

 if (cell.innerHTML.indexOf("sortheader") < 0) {
sortables_init();
 // sort the first sortable table; change [0] to sort other tables.
 tab = document.getElementsByTagName("table")[0];
 // sort by the first column; change [0] to sort by other columns.
 hdr = tab.getElementsByTagName("th")[0];
 // get the sort button link
 lnk = hdr.getElementsByTagName("a")[0];
 ts_resortTable(lnk);
}