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

update paper dialog helper

This commit is contained in:
Luke Pulverenti 2015-12-04 15:12:45 -05:00
parent 3061849dd6
commit 5093d99000

View file

@ -1,4 +1,4 @@
(function (globalScope) { define(['paper-dialog', 'scale-up-animation', 'fade-out-animation'], function () {
function paperDialogHashHandler(dlg, hash, lockDocumentScroll) { function paperDialogHashHandler(dlg, hash, lockDocumentScroll) {
@ -164,11 +164,12 @@
} }
} }
globalScope.PaperDialogHelper = { window.PaperDialogHelper = {
openWithHash: openWithHash, openWithHash: openWithHash,
close: close, close: close,
createDialog: createDialog, createDialog: createDialog,
positionTo: positionTo positionTo: positionTo
}; };
})(this); return PaperDialogHelper;
});