You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
470 B

5 years ago
  1. <div class="layout">
  2. <div class="layout-cell oc-logo-transparent">
  3. <script>
  4. $(document).ready(function() {
  5. var $search = $('#settings-search-input'),
  6. focusSearch = function() {
  7. setTimeout(function() { $search.focus().select() }, 10)
  8. };
  9. $search.on('blur', focusSearch);
  10. focusSearch()
  11. })
  12. </script>
  13. </div>
  14. </div>