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
4f026a87
Commit
4f026a87
authored
Mar 27, 2020
by
Takuya Ogawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
TECSS指定ページ移動ボタンのプレビュー対応
parent
53511fc5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
0 deletions
+22
-0
abvw/js/contentview.js
+13
-0
abvw/js/contentview_GetData.js
+9
-0
No files found.
abvw/js/contentview.js
View file @
4f026a87
...
...
@@ -3133,6 +3133,19 @@ CONTENTVIEW.ContentPage.prototype.addPageObjects = function (pageObjects) {
obj
.
height
,
obj
.
visible
);
//指定ページ移動ボタン
}
else
if
(
obj
.
actionType
==
19
)
{
pageObj
=
new
CONTENTVIEW_CREATEOBJECT
.
imageNoAction
(
obj
.
mediaType
,
obj
.
actionType
,
obj
.
id
,
obj
.
imageUrl
,
obj
.
x
,
obj
.
y
,
obj
.
width
,
obj
.
height
,
obj
.
visible
);
}
break
;
...
...
abvw/js/contentview_GetData.js
View file @
4f026a87
...
...
@@ -408,6 +408,15 @@ CONTENTVIEW_GETDATA.getMediaType1 = function(iValueObj) {
}
else
{
pageObject
[
'imageUrl'
]
=
null
;
}
else
if
(
iValueObj
.
action
.
actionType
==
19
)
{
/*get mediaInfo */
// プレビューでは表示だけで、クリックしても機能しない
if
(
iValueObj
.
mediaInfo
)
{
/* get image from Json */
pageObject
[
'imageUrl'
]
=
AVWEB
.
getURL
(
"webResourceDownload"
)
+
"&sid="
+
CONTENTVIEW
.
getSessionId
()
+
"&resourceId="
+
iValueObj
.
mediaInfo
.
resourceId
;
}
else
{
pageObject
[
'imageUrl'
]
=
null
;
}
}
//End Function : No.9 - Editor : Long - Date: 08/16/2013 - Summary :
return
pageObject
;
...
...
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