include jQuery and bootstrap (#1642)
This commit is contained in:
parent
38e94b9e43
commit
9b181280d4
|
|
@ -5,6 +5,11 @@ import { createStore, applyMiddleware, compose } from 'redux';
|
|||
import { Provider } from 'react-redux';
|
||||
import thunk from 'redux-thunk';
|
||||
|
||||
// jquery and bootstrap required to make bootstrap dropdown menu's work
|
||||
const $ = window.$ = require('jquery'); // eslint-disable-line
|
||||
const jQuery = window.jQuery = require('jquery'); // eslint-disable-line
|
||||
require('bootstrap');
|
||||
|
||||
import { initialState } from './stores/store';
|
||||
|
||||
const exploreViewContainer = document.getElementById('js-explore-view-container');
|
||||
|
|
|
|||
Loading…
Reference in New Issue