< User:Xavier
Revision as of 06:07, July 17, 2023 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 minutes = totalWords / 200;
var rminutes = Math.floor(totalWords / 200);
var seconds= (minutes - rminutes) * 60;
var rseconds = Math.floor(seconds);

var header = $("h1").text().replace('[edit | edit source]+link+','');
$("h1").text(header + " (" + rminutes + "m " + rseconds + "s)");
Comments or questions about this documentation? Contact us for support!