From: Lo?c C. <lo...@us...> - 2001-04-14 15:13:43
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs In directory usw-pr-cvs1:/tmp/cvs-serv22658/chat/lib/index_libs Modified Files: misc.lib.js Log Message: Fix a little bug about latin1 entities transformation Index: misc.lib.js =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/misc.lib.js,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** misc.lib.js 2001/04/13 12:52:29 1.5 --- misc.lib.js 2001/04/14 15:13:40 1.6 *************** *** 111,115 **** if (sendTo) { - sendTo.value = nick; var msgBox = jsInputForm.elements['message']; --- 111,114 ---- *************** *** 123,129 **** else { ! msgBox.value += nick; if (msgBox.value == nick) ! msgBox.value += '> '; } --- 122,129 ---- else { ! sendTo.value = nick; ! msgBox.value += nick; if (msgBox.value == nick) ! msgBox.value += '> '; } |