tethys/resources/js/jquery-global.js
2020-06-10 21:09:26 +02:00

6 lines
181 B
JavaScript

//https://stackoverflow.com/questions/35358625/jquery-is-not-defined-when-use-es6-import
// jquery-global.js
import jquery from 'jquery';
window.jQuery = jquery;
window.$ = jquery;