mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:21:21 +03:00
2982afe6b4
Currently, this needs to be its own chunk because fomantic depends on jQuery being present. The next step is to move fomantic to webpack too after which we can combine the index,fomantic and jquery files into one. jquery-migrate is still neccessary because our ancient version of Dropzone seems to break without it. I imagine it can be removed after a Dropzone upgrade.
6 lines
102 B
JavaScript
6 lines
102 B
JavaScript
import $ from 'jquery';
|
|
import 'jquery-migrate';
|
|
|
|
$.migrateMute = true;
|
|
window.$ = window.jQuery = $;
|