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

fix modal dialog

This commit is contained in:
Luke Pulverenti 2015-11-28 16:35:47 -05:00
parent 94c3abe443
commit 30f68bdf98
4 changed files with 8 additions and 8 deletions

View file

@ -39,6 +39,6 @@
"commit": "cec8e49744a1e18b14a711eea77e201bb70de544" "commit": "cec8e49744a1e18b14a711eea77e201bb70de544"
}, },
"_source": "git://github.com/desandro/doc-ready.git", "_source": "git://github.com/desandro/doc-ready.git",
"_target": "~1.0.4", "_target": "1.0.x",
"_originalSource": "doc-ready" "_originalSource": "doc-ready"
} }

View file

@ -31,6 +31,6 @@
"commit": "34fc5e4a0f252964ed2790138b8d7d30d04b55c1" "commit": "34fc5e4a0f252964ed2790138b8d7d30d04b55c1"
}, },
"_source": "git://github.com/desandro/get-style-property.git", "_source": "git://github.com/desandro/get-style-property.git",
"_target": "~1.0.4", "_target": "1.x",
"_originalSource": "get-style-property" "_originalSource": "get-style-property"
} }

View file

@ -32,14 +32,14 @@
"iron-test-helpers": "PolymerElements/iron-test-helpers#^1.0.0" "iron-test-helpers": "PolymerElements/iron-test-helpers#^1.0.0"
}, },
"ignore": [], "ignore": [],
"homepage": "https://github.com/polymerelements/paper-ripple", "homepage": "https://github.com/PolymerElements/paper-ripple",
"_release": "1.0.5", "_release": "1.0.5",
"_resolution": { "_resolution": {
"type": "version", "type": "version",
"tag": "v1.0.5", "tag": "v1.0.5",
"commit": "d72e7a9a8ab518b901ed18dde492df3b87a93be5" "commit": "d72e7a9a8ab518b901ed18dde492df3b87a93be5"
}, },
"_source": "git://github.com/polymerelements/paper-ripple.git", "_source": "git://github.com/PolymerElements/paper-ripple.git",
"_target": "^1.0.0", "_target": "^1.0.0",
"_originalSource": "polymerelements/paper-ripple" "_originalSource": "PolymerElements/paper-ripple"
} }

View file

@ -485,7 +485,7 @@ var Dashboard = {
elem = document.createElement('modalLoading'); elem = document.createElement('modalLoading');
elem.classList.add('modalLoading'); elem.classList.add('modalLoading');
elem.style.display = 'none'; elem.classList.add('hide');
document.body.appendChild(elem); document.body.appendChild(elem);
} }
@ -494,12 +494,12 @@ var Dashboard = {
}, },
showModalLoadingMsg: function () { showModalLoadingMsg: function () {
Dashboard.getModalLoadingMsg().show(); Dashboard.getModalLoadingMsg().classList.remove('hide');
Dashboard.showLoadingMsg(); Dashboard.showLoadingMsg();
}, },
hideModalLoadingMsg: function () { hideModalLoadingMsg: function () {
Dashboard.getModalLoadingMsg().hide(); Dashboard.getModalLoadingMsg().classList.add('hide');
Dashboard.hideLoadingMsg(); Dashboard.hideLoadingMsg();
}, },