From c906c82c176ddaf7897a13fc78b1264e2f5d25bd Mon Sep 17 00:00:00 2001 From: mark Date: Mon, 23 Jan 2012 21:22:57 +0000 Subject: fix xmenus in opera --- httemplate/elements/xmenu.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'httemplate/elements/xmenu.js') diff --git a/httemplate/elements/xmenu.js b/httemplate/elements/xmenu.js index 3ef9a3ddc..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 ) { -- cgit v1.2.1