[Phpfreechat-svn] SF.net SVN: phpfreechat: [561] trunk/themes/default/templates/pfcclient.js.tpl.ph
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-06-09 11:21:11
|
Revision: 561 Author: kerphi Date: 2006-06-09 04:21:03 -0700 (Fri, 09 Jun 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=561&view=rev Log Message: ----------- disable the commands history because the key code are in conflict with other keys 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-09 09:16:36 UTC (rev 560) +++ trunk/themes/default/templates/pfcclient.js.tpl.php 2006-06-09 11:21:03 UTC (rev 561) @@ -486,7 +486,7 @@ w.value = ''; return false; } - else if (code == 33) /* page up key */ + else if (code == 33 && false) // page up key { // write the last command in the history if (this.cmdhistory.length>0) @@ -500,7 +500,7 @@ w.value = this.cmdhistory[this.cmdhistoryid]; } } - else if (code == 34) /* page down key */ + else if (code == 34 && false) // page down key { // write the next command in the history if (this.cmdhistory.length>0) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |