Просмотр исходного кода

evaluate correct selection range.

Lucas Stadler лет назад: 12
Родитель
Сommit
43faaf54f8
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      js/pixl/public/trixl.html

+ 1 - 1
js/pixl/public/trixl.html

582
582
583
			if (ev.ctrlKey && ev.keyCode == 13) { // ctrl+enter
583
			if (ev.ctrlKey && ev.keyCode == 13) { // ctrl+enter
584
				if (editor == document.activeElement) {
584
				if (editor == document.activeElement) {
585
					var sel = editor.value.substr(editor.selectionStart, editor.selectionEnd);
585
					var sel = editor.value.substring(editor.selectionStart, editor.selectionEnd);
586
					eval(sel);
586
					eval(sel);
587
				}
587
				}
588
			}
588
			}