update components

This commit is contained in:
Luke Pulverenti 2016-02-04 23:56:19 -05:00
parent 4a467a2676
commit 091d4e96b7
3 changed files with 10 additions and 5 deletions

View file

@ -15,12 +15,12 @@
},
"devDependencies": {},
"ignore": [],
"version": "1.0.70",
"_release": "1.0.70",
"version": "1.0.71",
"_release": "1.0.71",
"_resolution": {
"type": "version",
"tag": "1.0.70",
"commit": "db75421f647d89be91ee5de3157770598939a3d6"
"tag": "1.0.71",
"commit": "460d304ff6916bf6815955a0c0135ff47dd2aca7"
},
"_source": "git://github.com/MediaBrowser/emby-webcomponents.git",
"_target": "~1.0.0",

View file

@ -56,7 +56,7 @@
dlg.open();
// It's not being positioned properly in firefox
if (!dlg.classList.contains('fixedSize')) {
if (!browser.chrome && !dlg.classList.contains('fixedSize')) {
setTimeout(function () {
dlg.refit();
}, 100);

View file

@ -13,6 +13,11 @@ define(['paperdialoghelper', 'layoutManager', 'html!./icons.html', 'css!./style.
dialogOptions.size = 'fullscreen';
backButton = true;
raisedButtons = true;
} else {
dialogOptions.modal = false;
dialogOptions.entryAnimationDuration = 160;
dialogOptions.exitAnimationDuration = 200;
}
var dlg = paperdialoghelper.createDialog(dialogOptions);