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

21 lines
302 B
JavaScript
Raw Normal View History

(function (window, $) {
function showSyncMenu(items) {
2014-07-20 00:46:29 -04:00
Dashboard.alert('Coming soon.');
2014-07-20 00:46:29 -04:00
}
2014-07-20 00:46:29 -04:00
function isAvailable(item, user) {
return true;
}
window.SyncManager = {
2014-07-20 00:46:29 -04:00
showMenu: showSyncMenu,
isAvailable: isAvailable
};
})(window, jQuery);