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

Disable animations in jstree for jQuery slim support

This commit is contained in:
Bill Thornton 2019-05-22 15:19:19 -04:00
parent fd6d3079c2
commit 61de82e7fe

View file

@ -149,7 +149,9 @@ define(["datetime", "jQuery", "material-icons"], function(datetime, $) {
nodesToLoad = [], selectedNodeId = null, $.jstree.destroy(), $(".libraryTree", page).jstree({
plugins: ["wholerow"],
core: {
check_callback: !0,
// Disable animations because jQuery slim does not support them
animation: false,
check_callback: true,
data: function(node, callback) {
loadNode(page, this, node, openItems, selectedId, currentUser, callback)
},
@ -220,4 +222,4 @@ define(["datetime", "jQuery", "material-icons"], function(datetime, $) {
getCurrentItemId: getCurrentItemId,
setCurrentItemId: setCurrentItemId
}
});
});