User:Hippietrail/singlesenses.js

Hello, you have come here looking for the meaning of the word User:Hippietrail/singlesenses.js. In DICTIOUS you will not only get to know all the dictionary meanings for the word User:Hippietrail/singlesenses.js, but we will also tell you about its etymology, its characteristics and you will know how to say User:Hippietrail/singlesenses.js in singular and plural. Everything you need to know about the word User:Hippietrail/singlesenses.js you have here. The definition of the word User:Hippietrail/singlesenses.js will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofUser:Hippietrail/singlesenses.js, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.
/*
<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.getElementsByTagName('li').length == 1) {
        allols.className = 'single-entry-list';
      }
    }
  }
}

/*
</pre>
*/