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

Merge pull request #450 from thornbill/fix-metadata-editor

Disable animations in editor sidebar
This commit is contained in:
Bond-009 2019-09-08 20:29:40 +02:00 committed by GitHub
commit 644d4ac062
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -241,6 +241,8 @@ define(["datetime", "jQuery", "material-icons"], function (datetime, $) {
$(".libraryTree", page).jstree({ $(".libraryTree", page).jstree({
"plugins": ["wholerow"], "plugins": ["wholerow"],
core: { core: {
// Disable animations because jQuery slim does not support them
animation: false,
check_callback: true, check_callback: true,
data: function (node, callback) { data: function (node, callback) {
loadNode(page, this, node, openItems, selectedId, currentUser, callback); loadNode(page, this, node, openItems, selectedId, currentUser, callback);