Commit 1913fad6 by Kang Donghun

loading screen resize

parent 80510bf8
......@@ -58,6 +58,12 @@ COMMON.avwScreenMove = function (url) {
* @param {String} key
*/
COMMON.showLoading = function () {
$(window).resize(function() {
$('#loader').css( {
'width': $(window).width(),
'height': $(window).height()
});
});
document.getElementById('loader').style.display = 'block';
};
......
......@@ -79,7 +79,8 @@ RF.initBreadcrumb = function () {
}
} else {
if (sessionStorage.getItem("pickUpType")) sessionStorage.removeItem("pickUpType");
if (addReportFlg == 1) {
if ((addReportFlg) && addReportFlg == 1) {
navs = [
{
titleLang: CONSTANT.PAGE_NAME.OPERATION_LIST,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment