User:Hippietrail/singlesenses.js

Note – after saving, you may have to bypass your browser’s cache to see the changes.

  • Mozilla / Firefox / Safari: hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (Command-R on a Macintosh);
  • Konqueror and Chrome: click Reload or press F5;
  • Opera: clear the cache in Tools → Preferences;
  • Internet Explorer: hold Ctrl while clicking Refresh, or press Ctrl-F5.

/*
<pre>
*/

// hide definition number when there is only one
function singleSenses() {
  var allols = document.getElementById('bodyContent').getElementsByTagName('ol');

  if (allols != -1) {
    for (var i = 0; i < allols.length; i++) {
      if (allols[i].getElementsByTagName('li').length == 1) {
        allols[i].className = 'single-entry-list';
      }
    }
  }
}

/*
</pre>
*/