Skip to content

Instantly share code, notes, and snippets.

@namiwang
Created June 9, 2020 03:18
Show Gist options
  • Save namiwang/e5427857644611b5e24795c830095bc7 to your computer and use it in GitHub Desktop.
Save namiwang/e5427857644611b5e24795c830095bc7 to your computer and use it in GitHub Desktop.
activeadmin, select2, webpacker
```
yarn add select2
```
# /javascript/stylesheets/active_admin.scss
```
@import 'select2/dist/css/select2';
```
# /javascript/active_admin.js
```
require('select2/dist/js/select2')
$(document).ready(function() {
$('select').select2();
})
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment