Fix focus on input field on thesaurus dialog

This commit is contained in:
mike-esokia
2018-05-18 13:13:07 +04:00
committed by Mike Ng
parent 1dcc579cfe
commit 1fa415a252

View File

@@ -88,7 +88,12 @@
modal: true,
title: "???",
autoOpen:false,
width:400
width: 400,
open: function () {
$("#NEWSY_DLG input[type=\"text\"]").on('click', function () {
$(this).focus();
});
}
});
}