Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
check
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abook_web
check
Commits
296597ca
Commit
296597ca
authored
Nov 16, 2022
by
Kang Donghun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
edited logout button function and alert message on accountSetting screen
parent
df5d8bd6
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
14 deletions
+20
-14
abweb/common/js/header.js
+4
-7
abweb/common/json/lang/lang-en.json
+4
-1
abweb/common/json/lang/lang-ja.json
+4
-1
abweb/common/json/lang/lang-ko.json
+5
-2
abweb/js/setting/settings.js
+3
-3
No files found.
abweb/common/js/header.js
View file @
296597ca
...
...
@@ -16,6 +16,7 @@ var HEADER = {};
};
HEADER
.
initLogout
=
function
()
{
$
(
"#btnLogout"
).
click
(
HEADER
.
logoutFunction
);
}
...
...
@@ -37,11 +38,7 @@ HEADER.goToHomePage = function (pageId) {
*/
HEADER
.
logoutFunction
=
function
()
{
console
.
log
(
'clicked logout'
);
$
(
'#modalTitle'
).
text
(
I18N
.
i18nText
(
"confirmation"
));
$
(
'#msgModel'
).
text
(
I18N
.
i18nText
(
'msgLogoutConfirm'
));
$
(
'#confirmYes'
).
show
();
$
(
'#confirmYes'
).
click
(
HEADER
.
processLogout
);
$
(
'#confirmNo'
).
text
(
I18N
.
i18nText
(
"confirmNo"
));
COMMON
.
showConfirm
(
I18N
.
i18nText
(
'msgLogoutConfirm'
),
HEADER
.
processLogout
,
{
title
:
I18N
.
i18nText
(
"confirmation"
)});
};
/**
...
...
@@ -66,7 +63,7 @@ HEADER.processLogout = function () {
COMMON
.
goUrlWithCurrentParams
(
CONSTANT
.
PAGE_NAME
.
LOGIN
);
}
else
{
if
(
data
.
errorMessage
)
{
COMMON
.
showAlert
(
data
.
errorMessage
);
COMMON
.
showAlert
(
null
,
{
message
:
data
.
errorMessage
}
);
}
else
{
COMMON
.
showAlert
(
'errorOccured'
);
}
...
...
@@ -74,7 +71,7 @@ HEADER.processLogout = function () {
},
function
(
xmlHttpRequest
,
txtStatus
,
errorThrown
)
{
if
(
xmlHttpRequest
.
errorMessage
)
{
COMMON
.
showAlert
(
xmlHttpRequest
.
errorMessage
);
COMMON
.
showAlert
(
null
,
{
message
:
xmlHttpRequest
.
errorMessage
}
);
}
else
{
COMMON
.
showAlert
(
'errorOccured'
);
}
...
...
abweb/common/json/lang/lang-en.json
View file @
296597ca
...
...
@@ -48,6 +48,7 @@
"msgEssential"
:
"{0} is required"
,
"pdfPrint"
:
"PDF Print"
,
"msgOperationEmpty"
:
"Operation data is Empty."
,
"success"
:
"Success"
,
"dashboard"
:
"Dashboard"
,
"dashboardSettings"
:
"Dashboard Settings"
,
...
...
@@ -120,5 +121,6 @@
"error"
:
"Error"
,
"msgSendPushMessageConfirm"
:
"Do you want to send message?"
,
"close"
:
"Close"
,
"dateError"
:
"Set the start date before the end date."
"dateError"
:
"Set the start date before the end date."
,
"errorGetToken"
:
"Failed to get token value from server."
}
\ No newline at end of file
abweb/common/json/lang/lang-ja.json
View file @
296597ca
...
...
@@ -46,6 +46,7 @@
"msgEssential"
:
"{0}は必須です。"
,
"pdfPrint"
:
"PDF出力"
,
"msgOperationEmpty"
:
"作業データがありません。"
,
"success"
:
"成功"
,
"dashboard"
:
"ダッシュボード"
,
"dashboardSettings"
:
"ダッシュボード設定"
,
...
...
@@ -118,5 +119,6 @@
"error"
:
"エラー"
,
"msgSendPushMessageConfirm"
:
"プッシュメッセージを送信しますか?"
,
"close"
:
"閉じる"
,
"dateError"
:
"開始日は終了日の前に設定してください。"
"dateError"
:
"開始日は終了日の前に設定してください。"
,
"errorGetToken"
:
"サーバからトークン値を取得できませんでした。"
}
\ No newline at end of file
abweb/common/json/lang/lang-ko.json
View file @
296597ca
...
...
@@ -45,6 +45,7 @@
"msgLogoutConfirm"
:
"로그아웃 하시겠습니까?"
,
"pdfPrint"
:
"PDF 출력"
,
"msgOperationEmpty"
:
"작업 데이터가 없습니다."
,
"success"
:
"성공"
,
"dashboard"
:
"대시보드"
,
"dashboardSettings"
:
"대시보드 설정"
,
...
...
@@ -116,6 +117,7 @@
"msgSendPushMessageSuccess"
:
"푸시메시지를 보냈습니다."
,
"error"
:
"에러"
,
"msgSendPushMessageConfirm"
:
"Do you want to send message?"
,
"close"
:
"Close"
,
"dateError"
:
"시작일은 종료일 이전에 설정하십시오."
"close"
:
"닫기"
,
"dateError"
:
"시작일은 종료일 이전에 설정하십시오."
,
"errorGetToken"
:
"서버에서 토큰 값을 가져오지 못했습니다."
}
\ No newline at end of file
abweb/js/setting/settings.js
View file @
296597ca
...
...
@@ -28,14 +28,14 @@ SETTINGS.getToken = function () {
if
(
data
.
token
)
{
$
(
'#getToken'
).
val
(
data
.
token
);
}
else
{
COMMON
.
showAlert
(
"
token error.."
,
true
);
COMMON
.
showAlert
(
"
errorGetToken"
);
}
},
function
(
data
)
{
if
(
data
.
errorMessage
)
{
COMMON
.
showAlert
(
data
.
errorMessage
);
}
else
{
COMMON
.
showAlert
(
'msgPwdChangeNG'
);
COMMON
.
showAlert
(
"errorGetToken"
);
}
});
};
...
...
@@ -134,7 +134,7 @@ SETTINGS.avwCmsApi_passwordChange_success = function (data) {
$
(
'#txtPwdNew'
).
val
(
''
);
$
(
'#txtPwdNewRe'
).
val
(
''
);
/* show messages */
COMMON
.
showAlert
(
'msgPwdChangeOK'
);
COMMON
.
showAlert
(
'msgPwdChangeOK'
,{
titleCode
:
I18N
.
i18nText
(
'success'
)}
);
}
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment