mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
17 lines
509 B
JavaScript
17 lines
509 B
JavaScript
(function ($) {
|
|
$.entwine('ss', function ($) {
|
|
/**
|
|
* Prevent the CMS hijacking the return key
|
|
*/
|
|
$('.add-existing-autocompleter input.text').entwine({
|
|
'onkeydown': function (e) {
|
|
if (e.which == 13) {
|
|
$parent = $(this).parents('.add-existing-autocompleter');
|
|
$parent.find('button[type="submit"]').click();
|
|
return false;
|
|
}
|
|
}
|
|
});
|
|
});
|
|
})(jQuery);
|