WebUI: Submit the label in the new label dialog on pressing enter key

This commit is contained in:
buinsky 2016-01-29 18:02:36 +03:00
parent 3591a0cedd
commit c04f502863

View file

@ -7,6 +7,17 @@
<script type="text/javascript" src="scripts/mootools-1.2-core-yc.js" charset="utf-8"></script>
<script type="text/javascript" src="scripts/mootools-1.2-more.js" charset="utf-8"></script>
<script type="text/javascript">
var newLabelKeyboardEvents = new Keyboard({
defaultEventType: 'keydown',
events: {
'enter': function (event) {
$('newLabelButton').click();
event.preventDefault();
}
}
});
newLabelKeyboardEvents.activate();
window.addEvent('domready', function() {
$('newLabel').focus();
$('newLabelButton').addEvent('click', function(e) {