diff options
author | silverwind <me@silverwind.io> | 2020-01-21 18:32:33 +0100 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2020-01-21 19:32:33 +0200 |
commit | 2982afe6b498f9d61bd48407c5408299a1cbbc60 (patch) | |
tree | 391483c055d7a657968c8da4af63f9908adbcf77 /public/vendor/librejs.html | |
parent | 0e8b27afe8aaa9055be24f71e8543f2701f18291 (diff) | |
download | gitea-2982afe6b498f9d61bd48407c5408299a1cbbc60.tar.gz gitea-2982afe6b498f9d61bd48407c5408299a1cbbc60.zip |
move jquery and jquery-migrate to npm/webpack (#9813)
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.
Diffstat (limited to 'public/vendor/librejs.html')
-rw-r--r-- | public/vendor/librejs.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/public/vendor/librejs.html b/public/vendor/librejs.html index 33cc72ef3b..0766b8ad64 100644 --- a/public/vendor/librejs.html +++ b/public/vendor/librejs.html @@ -16,14 +16,14 @@ <td><a href="https://github.com/codedance/jquery.AreYouSure/archive/1.9.0.tar.gz">jquery.areyousure-1.9.0.tar.gz</a></td> </tr> <tr> - <td><a href="./plugins/jquery/jquery.min.js">jquery.min.js</a></td> + <td><a href="../js/jquery.js">jQuery</a></td> <td><a href="https://jquery.org/license/">MIT</a></td> <td><a href="https://code.jquery.com/jquery-3.4.1.min.js">jquery-3.4.1.min.js</a></td> </tr> <tr> - <td><a href="./plugins/jquery-migrate/jquery-migrate.min.js">jquery-migrate.min.js</a></td> + <td><a href="../js/jquery.js">jQuery Migrate</a></td> <td><a href="https://jquery.org/license/">MIT</a></td> - <td><a href="https://code.jquery.com/jquery-migrate-3.0.1.min.js">jquery-migrate-3.0.1.min.js</a></td> + <td><a href="https://code.jquery.com/jquery-migrate-3.1.0.min.js">jquery-migrate-3.1.0.min.js</a></td> </tr> <tr> <td><a href="./plugins/fomantic/semantic.min.js">semantic.min.js</a></td> |