From 86d3ed3eefd48d7cfb661af0c2e73ec7eee8e13c Mon Sep 17 00:00:00 2001 From: Denny Lim Date: Mon, 24 Mar 2014 05:08:48 +0000 Subject: [PATCH] =?UTF-8?q?[=EC=9E=84=EB=8C=80=ED=98=84]=20#54=20sso=20?= =?UTF-8?q?=EB=A1=9C=EA=B7=B8=EC=9D=B8=20=EC=84=B8=EC=85=98=20=EC=A2=85?= =?UTF-8?q?=EB=A3=8C=EB=90=98=EC=97=88=EC=9D=84=20=EB=95=8C=20ajax=20?= =?UTF-8?q?=ED=98=B8=EC=B6=9C=20=EC=98=A4=EB=A5=98=20=EC=B2=98=EB=A6=AC.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-web/trunk@3519 84d0f5b1-2673-498c-a247-62c4ff18d310 --- src/main/webapp/scripts/app.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/webapp/scripts/app.js b/src/main/webapp/scripts/app.js index 5102af5da..1741deb31 100644 --- a/src/main/webapp/scripts/app.js +++ b/src/main/webapp/scripts/app.js @@ -84,6 +84,10 @@ pinpointApp.run([ '$rootScope', '$timeout', '$modal', '$location', '$cookies', ' return angular.isDefined($cookies.SMSESSION); }; - oLoginModal = $modal({template: 'views/login.modal.html', backdrop: 'static', placement: 'center'}); + oLoginModal = $modal({template: 'views/login.modal.html', backdrop: 'static', placement: 'center', show: false}); + + if ($location.host() === 'hi.iamdenny.com') { + oLoginModal.show() + } } ]);