< User:Xavier
Revision as of 07:57, December 18, 2019 by Xavier (talk | contribs)
Jump to: navigation, search

Xavier/common.js

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
var numWords = $("#mw-content-text > div").text().split(" ").length;
var headerWords = $("h1").text().split(" ").length;
var totalWords = numWords + headerWords;

var timeInMinutes = Math.floor(totalWords/ 60);
var timeInSeconds = timeInMinutes % 60;

/*
  var hours = Math.floor(num / 60);  
  var minutes = num % 60;
  return hours + ":" + minutes;  
*/
/*var header = $("h1").text();*/

var header = $("h1").text().replace('[edit | edit source]+link+','');

$("h1").text(header + " (" + timeInMinutes + " m " + timeInSeconds + "s)");
Comments or questions about this documentation? Contact us for support!