We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3d96e3 commit 3d4b8a6Copy full SHA for 3d4b8a6
CHANGELOG
@@ -1,5 +1,8 @@
1
- Added threadsafety as tech preview, enabled with ActiveScaffold.threadsafe! in initializer.
2
3
+= 3.5.x
4
+- Load chosen on turbolinks:load event
5
+
6
= 3.5.1
7
- Fix set false options for date picker
8
- Fix :hidden form_ui for singular associations
app/assets/javascripts/jquery/active_scaffold_chosen.js
@@ -8,4 +8,7 @@ jQuery(document).ready(function() {
}
9
});
10
jQuery('select.chosen').chosen();
11
+ jQuery(document).on('turbolinks:load', function($) {
12
+ jQuery('select.chosen').chosen();
13
+ });
14
0 commit comments