MediaWiki:Common.js: Difference between revisions

testing lower sleep time
(do we have to put this on a timer to give the page time to load?)
(testing lower sleep time)
Line 518: Line 518:
  */
  */


// For some reason, the arrow buttons and headerSort classes are not attached to sortable tables immediately upon the "load" event, and we need those, so we wait a bit before trying to sort
function sortTimer()
function sortTimer()
{
{
Line 523: Line 524:
     {
     {
         sortSortableTables();
         sortSortableTables();
     }, (3 * 1000));
     }, (1 * 1000));
}
}