expertiza/expertiza

View on GitHub
app/assets/javascripts/actionmenu.js

Summary

Maintainability
A
0 mins
Test Coverage
actHover = function() {
    var actEls = document.getElementById("actionmenu").getElementsByTagName("LI");
    for (var i=0; i<actEls.length; i++) {
        actEls[i].onmouseover=function() {
            this.className+=" acthover";
        }
        actEls[i].onmouseout=function() {
            this.className=this.className.replace(new RegExp(" acthover\\b"), "");
        }
    }
}
if (window.attachEvent) window.attachEvent("onload", actHover);