[Phpfreechat-svn] SF.net SVN: phpfreechat: [606] trunk/themes/default/templates/pfcclient.js.tpl.ph
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-06-16 20:30:32
|
Revision: 606 Author: kerphi Date: 2006-06-16 13:30:27 -0700 (Fri, 16 Jun 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=606&view=rev Log Message: ----------- Bug fix: the focus on click feature was broken for konqueror Modified Paths: -------------- trunk/themes/default/templates/pfcclient.js.tpl.php Modified: trunk/themes/default/templates/pfcclient.js.tpl.php =================================================================== --- trunk/themes/default/templates/pfcclient.js.tpl.php 2006-06-16 20:26:28 UTC (rev 605) +++ trunk/themes/default/templates/pfcclient.js.tpl.php 2006-06-16 20:30:27 UTC (rev 606) @@ -549,12 +549,12 @@ }, callbackContainer_OnMousedown: function(evt) { - if ( (is_ie && evt.button == 1) || (is_ff && evt.button == 0) ) + if ( ((is_ie || is_khtml) && evt.button == 1) || (is_ff && evt.button == 0) ) this.isdraging = false; }, callbackContainer_OnMouseup: function(evt) { - if ( (is_ie && evt.button == 1) || (is_ff && evt.button == 0) ) + if ( ((is_ie || is_khtml) && evt.button == 1) || (is_ff && evt.button == 0) ) if (!this.isdraging) if (this.el_words && !this.minmax_status) this.el_words.focus(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |