зеркало из https://github.com/mozilla/pjs.git
Bug 333097 - Allow Ctrl-Enter in single-line input to sent commands as literal text.
ChatZilla only. r=samuel
This commit is contained in:
Родитель
345cf7fab1
Коммит
774f072b37
|
@ -340,6 +340,8 @@ function onInputKeyPress (e)
|
|||
case 13: /* CR */
|
||||
e.line = e.target.value;
|
||||
e.target.value = "";
|
||||
if (e.ctrlKey)
|
||||
e.line = client.COMMAND_CHAR + "say " + e.line;
|
||||
if (e.line.search(/\S/) == -1)
|
||||
return;
|
||||
onInputCompleteLine (e);
|
||||
|
|
Загрузка…
Ссылка в новой задаче