Merge pull request #1814 from pavel-mironchik/bootstrap-jquery

Do not include jQuery twice.
This commit is contained in:
Cüneyt Şentürk
2021-01-29 09:56:04 +03:00
committed by GitHub

View File

@ -8,7 +8,9 @@ window._ = require('lodash');
*/ */
try { try {
window.$ = window.jQuery = require('jquery'); if (!window.$) {
window.$ = window.jQuery = require('jquery');
}
//require('bootstrap-sass'); //require('bootstrap-sass');
} catch (e) {} } catch (e) {}