@activeadmin/activeadmin
Version:
The administration framework for Ruby on Rails.
8 lines (7 loc) • 356 B
JavaScript
// Short-circuits `_focusTabbable` to focus on the modal itself instead of
// elements inside the modal. Without this, if a datepicker is the first input,
// it'll immediately pop up when the modal opens.
// See this ticket for more info: http://bugs.jqueryui.com/ticket/4731
$.ui.dialog.prototype._focusTabbable = function() {
this.uiDialog.focus();
};