X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Felements%2Fxmenu.js;h=4050ea04165312f86876ac66c2945b25c2a49cfa;hp=134265f53d0fd4389e26b9953a8f19a247a21aae;hb=37e92c220a54636ebc7900cd59ec6ce56790ede8;hpb=5e05724a635a22776f1b973f5d7e77989da4e048 diff --git a/httemplate/elements/xmenu.js b/httemplate/elements/xmenu.js index 134265f53..4050ea041 100644 --- a/httemplate/elements/xmenu.js +++ b/httemplate/elements/xmenu.js @@ -14,7 +14,7 @@ // check browsers var ua = navigator.userAgent; -var opera = /opera [56789]|opera\/[56789]/i.test(ua); +var opera = window.opera || /opera [56789]|opera\/[56789]/i.test(ua); var ie = !opera && /MSIE/.test(ua); var ie50 = ie && /MSIE 5\.[01234]/.test(ua); var ie6 = ie && /MSIE [6789]/.test(ua); @@ -190,8 +190,10 @@ WebFXMenu.prototype.show = function (relObj, sDir) { var divElement = document.getElementById(this.id); if ( divElement ) { - divElement.style.left = opera ? this.left : this.left + "px"; - divElement.style.top = opera ? this.top : this.top + "px"; + //divElement.style.left = opera ? this.left : this.left + "px"; + //divElement.style.top = opera ? this.top : this.top + "px"; + divElement.style.left = this.left + "px"; + divElement.style.top = this.top + "px"; divElement.style.visibility = "visible"; if ( ie ) { @@ -369,7 +371,7 @@ WebFXMenuButton.prototype.toString = function () { ) )) + ">" + - (this.subMenu ? "" : "") + + (this.subMenu ? "" : "") + this.text + ""; };