Run collectstatic. Fix input autofocus in webclient

This commit is contained in:
Griatch 2018-10-01 18:29:21 +02:00
parent 9553acecb2
commit 70c5e9608e

View file

@ -8,6 +8,7 @@ let defaultin_plugin = (function () {
//
// handle the default <enter> key triggering onSend()
var onKeydown = function (event) {
$("#inputfield").focus();
if ( (event.which === 13) && (!event.shiftKey) ) { // Enter Key without shift
var inputfield = $("#inputfield");
var outtext = inputfield.val();