include jQuery and bootstrap (#1642)

This commit is contained in:
Alanna Scott 2016-11-18 16:22:46 -08:00 committed by GitHub
parent 38e94b9e43
commit 9b181280d4
1 changed files with 5 additions and 0 deletions

View File

@ -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');