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

update dialogs

This commit is contained in:
Luke Pulverenti 2016-07-19 15:51:22 -04:00
parent 44d840d483
commit dc69bc6055
23 changed files with 300 additions and 210 deletions

View file

@ -146,6 +146,16 @@ define(['playbackManager', 'inputManager', 'connectionManager', 'embyRouter', 'g
}));
}
}
else if (result.command == 'canceltimer') {
if (itemsContainer) {
itemsContainer.dispatchEvent(new CustomEvent('timercancelled', {
detail: {},
cancelable: false,
bubbles: true
}));
}
}
});
});
});