Set the default focus on the Dry Run button

Akinori MUSHA 9 年之前
父節點
當前提交
a0f886690d
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      app/assets/javascripts/components/utils.js.coffee

+ 2 - 0
app/assets/javascripts/components/utils.js.coffee

@@ -89,6 +89,8 @@ class @Utils
89 89
           $(body).closest('[role=dialog]').on 'hidden.bs.modal', =>
90 90
             @invokeDryRun(url, dry_run_data, cleanup)
91 91
           .modal('hide')
92
+        $(body).closest('[role=dialog]').on 'shown.bs.modal', ->
93
+          $(this).find('.btn-primary').focus()
92 94
       title: 'Dry Run'
93 95
       onHide: cleanup
94 96