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
9f58afed
Commit
9f58afed
authored
Jan 05, 2016
by
vietdo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#15542 Web版の履歴一覧で、英語・韓国語に切り替えて並び替えで「タイトル(カナ)」が表示されている
parent
4849bacd
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
9 deletions
+10
-9
abvw/common/js/common.js
+2
-1
abvw/common/json/lang/lang-ko.json
+1
-1
abvw/common/json/sys/conf.json
+3
-3
abvw/js/contentpreview.js
+1
-1
abvw/js/contentview.js
+3
-3
No files found.
abvw/common/js/common.js
View file @
9f58afed
...
...
@@ -75,7 +75,8 @@ COMMON.ContentTypeKeys = {
Type_Html
:
'html'
,
Type_Enquete
:
'enquete'
,
Type_Exam
:
'exam'
,
Type_Link
:
'url'
Type_Link
:
'url'
,
Type_PanoMovie
:
'panoMovie'
};
/*
...
...
abvw/common/json/lang/lang-ko.json
View file @
9f58afed
...
...
@@ -47,7 +47,7 @@
"txtRead"
:
"열기"
,
"txtSort"
:
"정렬"
,
"dspTitleNm"
:
"제목"
,
"dspTitleNmKn"
:
"제목"
,
"dspTitleNmKn"
:
"제목
(별명)
"
,
"txtPubDt"
:
"공개일"
,
"txtRecordNum"
:
"건"
,
"txtRecordTotal"
:
"건 표시"
,
...
...
abvw/common/json/sys/conf.json
View file @
9f58afed
{
"apiUrl"
:
"https://web
3.agentec.jp
/acms/{0}/abvapi"
,
"apiLoginUrl"
:
"https://web
3.agentec.jp
/acms/nuabvapi"
,
"apiResourceDlUrl"
:
"https://web
3.agentec.jp
/acms/{0}/dl"
,
"apiUrl"
:
"https://web
5.abook.bz
/acms/{0}/abvapi"
,
"apiLoginUrl"
:
"https://web
5.abook.bz
/acms/nuabvapi"
,
"apiResourceDlUrl"
:
"https://web
5.abook.bz
/acms/{0}/dl"
,
"bookShelfCount"
:
15
,
"bookListCount"
:
15
,
"screenlockTimeDefault"
:
30
,
...
...
abvw/js/contentpreview.js
View file @
9f58afed
...
...
@@ -12,7 +12,7 @@ CONTENTPREVIEW.ready = function(){
var
sid
=
COMMON
.
getUrlParam
(
'sid'
,
''
);
var
contentId
=
COMMON
.
getUrlParam
(
'contentId'
,
''
);
var
urlPath
=
COMMON
.
getUrlParam
(
'urlpath'
,
''
);
ClientData
.
userInfo_sid_preview
(
sid
);
console
.
log
(
"pid"
+
ClientData
.
userInfo_sid_preview
(
sid
));
ClientData
.
userInfo_sid_preview
(
sid
);
ClientData
.
userInfo_sid_local_preview
(
sid
);
ClientData
.
userInfo_accountPath
(
urlPath
);
ClientData
.
contentInfo_contentId
(
contentId
);
...
...
abvw/js/contentview.js
View file @
9f58afed
...
...
@@ -2153,7 +2153,7 @@ CONTENTVIEW.displayOverlayForSpecifyContentType = function( resourceUrl ){
}
else
if
(
CONTENTVIEW_GENERAL
.
contentType
==
COMMON
.
ContentTypeKeys
.
Type_Html
){
var
linkUrlTmp
=
resourceUrl
;
console
.
log
(
"linkUrlTmp"
+
linkUrlTmp
);
var
linkUrlTmp
=
resourceUrl
;
//HTMLカスタムログオプション有り
if
(
ClientData
.
serviceOpt_html_custom_log
()
==
'Y'
){
var
apiUrl
=
AVWEB
.
getApiUrl
(
ClientData
.
userInfo_accountPath
());
...
...
@@ -5999,9 +5999,9 @@ CONTENTVIEW.handleDisplayMobileToolbar = function(){
CONTENTVIEW
.
getSessionId
=
function
(){
if
(
COMMON
.
isAuthoringPreview
()){
if
(
ClientData
.
userInfo_sid_local_preview
()){
console
.
log
(
"pid1"
+
ClientData
.
userInfo_sid_local_preview
())
if
(
ClientData
.
userInfo_sid_local_preview
()){
return
ClientData
.
userInfo_sid_local_preview
();
}
else
{
console
.
log
(
"pid2"
+
ClientData
.
userInfo_sid_preview
())
}
else
{
return
ClientData
.
userInfo_sid_preview
();
}
}
else
{
...
...
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