Skip to content

Commit

Permalink
include jQuery and bootstrap (#1642)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alanna Scott authored Nov 19, 2016
1 parent 38e94b9 commit 9b18128
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions superset/assets/javascripts/explorev2/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 9b18128

Please sign in to comment.