Merge pull request #2599 from mike-esokia/PHRAS-1565_thesaurus_input_field

PHRAS-1565 Fix focus on input field on thesaurus dialog
This commit is contained in:
Nicolas Maillat
2018-05-18 12:27:42 +02:00
committed by GitHub

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();
});
}
});
}