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
1d9e92a4
Commit
1d9e92a4
authored
Dec 01, 2020
by
Kim Eunchul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#40386 【TECSS(Biz) webviewer 1.9】pdfコンテンツを回転した状態で、「マーキング」アイコンがクリッカブルになる
parent
c4766d8b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
18 deletions
+30
-18
abvw/js/contentview_CreateObjects.js
+21
-12
abvw/js/contentview_GetData.js
+3
-2
abvw/js/contentview_InitObjects.js
+6
-4
No files found.
abvw/js/contentview_CreateObjects.js
View file @
1d9e92a4
...
...
@@ -2194,7 +2194,9 @@ CONTENTVIEW_CREATEOBJECT.Transition.prototype.flipNextPage = function () {
}
/* init image had draw */
CONTENTVIEW_INITOBJECT
.
initDisplayMarking
();
if
(
$
(
'#rotatebtnR'
).
attr
(
'angle'
)
==
'0'
){
CONTENTVIEW_INITOBJECT
.
initDisplayMarking
();
}
/* change title of page */
if
(
CONTENTVIEW_GENERAL
.
dataPageTitle
[
CONTENTVIEW_GETDATA
.
getContent
().
pageIndex
])
{
...
...
@@ -2268,8 +2270,9 @@ CONTENTVIEW_CREATEOBJECT.Transition.prototype.flipNextPage = function () {
}
/* init image had draw */
CONTENTVIEW_INITOBJECT
.
initDisplayMarking
();
if
(
$
(
'#rotatebtnR'
).
attr
(
'angle'
)
==
'0'
){
CONTENTVIEW_INITOBJECT
.
initDisplayMarking
();
}
/* change title of page */
if
(
CONTENTVIEW_GENERAL
.
dataPageTitle
[
CONTENTVIEW_GETDATA
.
getContent
().
pageIndex
])
{
if
(
CONTENTVIEW_GENERAL
.
dataPageTitle
[
CONTENTVIEW_GETDATA
.
getContent
().
pageIndex
]
!=
''
)
{
...
...
@@ -2357,8 +2360,9 @@ CONTENTVIEW_CREATEOBJECT.Transition.prototype.flipPreviousPage = function () {
}
/* init image had draw */
CONTENTVIEW_INITOBJECT
.
initDisplayMarking
();
if
(
$
(
'#rotatebtnR'
).
attr
(
'angle'
)
==
'0'
){
CONTENTVIEW_INITOBJECT
.
initDisplayMarking
();
}
/* change title of page */
if
(
CONTENTVIEW_GENERAL
.
dataPageTitle
[
CONTENTVIEW_GETDATA
.
getContent
().
pageIndex
])
{
if
(
CONTENTVIEW_GENERAL
.
dataPageTitle
[
CONTENTVIEW_GETDATA
.
getContent
().
pageIndex
]
!=
''
)
{
...
...
@@ -2429,8 +2433,9 @@ CONTENTVIEW_CREATEOBJECT.Transition.prototype.flipPreviousPage = function () {
}
/* init image had draw */
CONTENTVIEW_INITOBJECT
.
initDisplayMarking
();
if
(
$
(
'#rotatebtnR'
).
attr
(
'angle'
)
==
'0'
){
CONTENTVIEW_INITOBJECT
.
initDisplayMarking
();
}
/* change title of page */
if
(
CONTENTVIEW_GENERAL
.
dataPageTitle
[
CONTENTVIEW_GETDATA
.
getContent
().
pageIndex
])
{
if
(
CONTENTVIEW_GENERAL
.
dataPageTitle
[
CONTENTVIEW_GETDATA
.
getContent
().
pageIndex
]
!=
''
)
{
...
...
@@ -2463,7 +2468,9 @@ CONTENTVIEW_CREATEOBJECT.Transition.prototype.flipToPage = function (index) {
if
(
index
==
CONTENTVIEW_GETDATA
.
getContent
().
pageIndex
)
{
/* init image had draw */
CONTENTVIEW_INITOBJECT
.
initDisplayMarking
();
if
(
$
(
'#rotatebtnR'
).
attr
(
'angle'
)
==
'0'
){
CONTENTVIEW_INITOBJECT
.
initDisplayMarking
();
}
}
else
if
(
index
<
CONTENTVIEW_GETDATA
.
getContent
().
pageIndex
)
{
CONTENTVIEW_GENERAL
.
context_main
.
clearRect
(
0
,
0
,
CONTENTVIEW_GENERAL
.
canvas_main
.
width
,
CONTENTVIEW_GENERAL
.
canvas_main
.
height
);
CONTENTVIEW
.
removeObject
();
...
...
@@ -2515,8 +2522,9 @@ CONTENTVIEW_CREATEOBJECT.Transition.prototype.flipToPage = function (index) {
CONTENTVIEW
.
checkExistNextPrePage
();
CONTENTVIEW
.
changeSlider
(
index
);
/* init image had draw */
CONTENTVIEW_INITOBJECT
.
initDisplayMarking
();
/* change title of page */
if
(
$
(
'#rotatebtnR'
).
attr
(
'angle'
)
==
'0'
){
CONTENTVIEW_INITOBJECT
.
initDisplayMarking
();
}
/* change title of page */
if
(
CONTENTVIEW_GENERAL
.
dataPageTitle
[
index
])
{
if
(
CONTENTVIEW_GENERAL
.
dataPageTitle
[
index
]
!=
''
)
{
document
.
title
=
CONTENTVIEW_GENERAL
.
contentName
+
'_'
+
CONTENTVIEW_GENERAL
.
dataPageTitle
[
index
]
+
' | '
+
I18N
.
i18nText
(
'sysAppTitle'
);
...
...
@@ -2594,8 +2602,9 @@ CONTENTVIEW_CREATEOBJECT.Transition.prototype.flipToPage = function (index) {
CONTENTVIEW
.
checkExistNextPrePage
();
CONTENTVIEW
.
changeSlider
(
index
);
/* init image had draw */
CONTENTVIEW_INITOBJECT
.
initDisplayMarking
();
/* change title of page */
if
(
$
(
'#rotatebtnR'
).
attr
(
'angle'
)
==
'0'
){
CONTENTVIEW_INITOBJECT
.
initDisplayMarking
();
}
/* change title of page */
if
(
CONTENTVIEW_GENERAL
.
dataPageTitle
[
index
])
{
if
(
CONTENTVIEW_GENERAL
.
dataPageTitle
[
index
]
!=
''
)
{
document
.
title
=
CONTENTVIEW_GENERAL
.
contentName
+
'_'
+
CONTENTVIEW_GENERAL
.
dataPageTitle
[
index
]
+
' | '
+
I18N
.
i18nText
(
'sysAppTitle'
);
...
...
abvw/js/contentview_GetData.js
View file @
1d9e92a4
...
...
@@ -1280,8 +1280,9 @@ CONTENTVIEW_GETDATA.getContentInfoTypeImage = function(){
CONTENTVIEW_INITOBJECT
.
initImageBookmark
();
/* init image had draw */
CONTENTVIEW_INITOBJECT
.
initDisplayMarking
();
if
(
$
(
'#rotatebtnR'
).
attr
(
'angle'
)
==
'0'
){
CONTENTVIEW_INITOBJECT
.
initDisplayMarking
();
}
/* check status */
CONTENTVIEW
.
checkStatusImageMarking
();
...
...
abvw/js/contentview_InitObjects.js
View file @
1d9e92a4
...
...
@@ -391,8 +391,9 @@ CONTENTVIEW_INITOBJECT.ajaxComplete8 = function(){
CONTENTVIEW_INITOBJECT
.
initImageAddMemo
();
/* init image had draw */
CONTENTVIEW_INITOBJECT
.
initDisplayMarking
();
if
(
$
(
'#rotatebtnR'
).
attr
(
'angle'
)
==
'0'
){
CONTENTVIEW_INITOBJECT
.
initDisplayMarking
();
}
/* check status */
CONTENTVIEW
.
checkStatusImageMarking
();
...
...
@@ -517,8 +518,9 @@ CONTENTVIEW_INITOBJECT.ajaxComplete4 = function(){
CONTENTVIEW_INITOBJECT
.
initImageAddMemo
();
/* init image had draw */
CONTENTVIEW_INITOBJECT
.
initDisplayMarking
();
if
(
$
(
'#rotatebtnR'
).
attr
(
'angle'
)
==
'0'
){
CONTENTVIEW_INITOBJECT
.
initDisplayMarking
();
}
/* check status */
CONTENTVIEW
.
checkStatusImageMarking
();
...
...
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