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

update editor launching

This commit is contained in:
Luke Pulverenti 2016-01-02 13:49:09 -05:00
parent 2fe27c82da
commit b3f0117edb

View file

@ -875,11 +875,11 @@
editMetadata: function (itemId) {
Dashboard.navigate('edititemmetadata.html?id=' + itemId);
return;
require(['components/metadataeditor/metadataeditor'], function () {
//Dashboard.navigate('edititemmetadata.html?id=' + itemId);
//return;
require(['components/metadataeditor/metadataeditor'], function (metadataeditor) {
MetadataEditor.show(itemId);
metadataeditor.show(itemId);
});
},