Skip to content

Commit db2f289

Browse files
committed
Backport Safari bug fix to 6.x
REF #1818 The order that JS files are compiled is contributing to a bug in the Safari browser that makes the search form input inaccessible when auto-complete is enabled for the field. This commit fixes the issue by updating the order of the files to match the BL-7.x order.
1 parent 75ac3e1 commit db2f289

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/assets/javascripts/blacklight/blacklight.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
//
66
// These javascript files are compiled in via the Rails asset pipeline:
77
//= require blacklight/core
8-
//= require blacklight/autofocus
8+
//= require blacklight/autocomplete
99
//= require blacklight/bookmark_toggle
10-
//= require blacklight/ajax_modal
11-
//= require blacklight/search_context
1210
//= require blacklight/collapsable
1311
//= require blacklight/facet_load
14-
//= require blacklight/autocomplete
12+
//= require blacklight/ajax_modal
13+
//= require blacklight/search_context
14+
//= require blacklight/autofocus
1515
//
1616
//Bootstrap JS for providing collapsable tablet/mobile menu/alert boxes
1717
//= require bootstrap/transition

0 commit comments

Comments
 (0)