1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

bundle jquery and enable animations for metadata page

This commit is contained in:
dkanada 2019-09-12 04:01:53 -07:00
parent 26644c06c4
commit 0aca394e1e
6 changed files with 8 additions and 2635 deletions

View file

@ -7,7 +7,11 @@ var _define = window.define;
// jstree
var jstree = require("jstree");
require("jstree/dist/themes/default/style.css");
_define("jstree", ["jQuery"], function() { return jstree; });
_define("jstree", function() { return jstree; });
// jquery
var jquery = require("jquery");
_define("jQuery", function() { return jquery; });
// hlsjs
var hlsjs = require("hls.js");