You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by jm...@apache.org on 2007/05/17 01:10:54 UTC

svn commit: r538781 - /incubator/xap/trunk/codebase/src/xap/widgets/Label.js

Author: jmargaris
Date: Wed May 16 18:10:54 2007
New Revision: 538781

URL: http://svn.apache.org/viewvc?view=rev&rev=538781
Log:
_showImg, which is called on mouseOver/mouseDown,
was calling _showText that actually removed and replaced
text making onClick not fire properly

Modified:
    incubator/xap/trunk/codebase/src/xap/widgets/Label.js

Modified: incubator/xap/trunk/codebase/src/xap/widgets/Label.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/codebase/src/xap/widgets/Label.js?view=diff&rev=538781&r1=538780&r2=538781
==============================================================================
--- incubator/xap/trunk/codebase/src/xap/widgets/Label.js (original)
+++ incubator/xap/trunk/codebase/src/xap/widgets/Label.js Wed May 16 18:10:54 2007
@@ -282,8 +282,6 @@
 		if (imgURL != "") {
 			this.img.src = imgURL;
 			this.img.style.display = "";
-
-			this._showText();
 		} else {
 			this.img.style.display = 'none';
 		}