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
2850e4cb
Commit
2850e4cb
authored
Aug 28, 2020
by
Kim Eunchul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#31600 【Biz Web 1.9.0】フォームを透明にした後にスライドを開くと透明になっている
parent
3d591981
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
abvw/js/contentview_Anket.js
+16
-0
No files found.
abvw/js/contentview_Anket.js
View file @
2850e4cb
...
...
@@ -15,6 +15,8 @@ CONTENTVIEW_ANKET.showAnket = function(url, fullscreen, objectId) {
var
width
=
fullscreen
==
true
?
canvas
.
width
:
340
;
var
anketCommandsKey
=
canvas
.
getAttribute
(
'anket-commands'
);
if
(
fullscreen
==
true
)
{
$container
.
attr
(
'style'
,
'width:'
+
width
+
'px; left:10px;right:auto;'
);
}
...
...
@@ -22,6 +24,15 @@ CONTENTVIEW_ANKET.showAnket = function(url, fullscreen, objectId) {
$container
.
attr
(
'style'
,
'width:'
+
width
+
'px; right:10px;left:auto;'
);
// !important
}
if
(
anketCommandsKey
==
'anket-transparent'
){
$
(
'#dialog,#dialog iframe,#anket-commands,#anket-commands input'
).
removeClass
(
'anket-opacity anket-transparent anket-translucent anket-transparent-content'
).
addClass
(
'anket-transparent'
);
$
(
'#anket-container'
).
removeClass
(
'anket-opacity anket-transparent anket-translucent anket-transparent-content'
).
addClass
(
'anket-transparent-content'
);
}
else
if
(
anketCommandsKey
==
'anket-translucent'
){
$
(
'#dialog,#dialog iframe,#anket-commands,#anket-commands input,#anket-container'
).
removeClass
(
'anket-opacity anket-transparent anket-translucent anket-transparent-content'
).
addClass
(
'anket-translucent'
);
}
else
if
(
anketCommandsKey
==
'anket-opacity'
){
$
(
'#dialog,#dialog iframe,#anket-commands,#anket-commands input,#anket-container'
).
removeClass
(
'anket-opacity anket-transparent anket-translucent anket-transparent-content'
).
addClass
(
'anket-opacity'
);
}
$container
.
draggable
({
handle
:
"h1"
});
$container
.
html
(
'<h1>'
+
I18N
.
i18nText
(
'txtEnqueteTitle'
)
...
...
@@ -43,6 +54,8 @@ CONTENTVIEW_ANKET.showAnket = function(url, fullscreen, objectId) {
$container
.
removeAttr
(
'style'
);
CONTENTVIEW_GENERAL
.
hideDialog
();
//dialog透明解除
$
(
'#dialog,#dialog iframe,#anket-commands,#anket-commands input,#anket-container'
).
removeClass
(
'anket-opacity anket-transparent anket-translucent anket-transparent-content'
);
return
false
;
},
...
...
@@ -84,16 +97,19 @@ CONTENTVIEW_ANKET.showAnket = function(url, fullscreen, objectId) {
//set transparent
$
(
'#dialog,#dialog iframe,#anket-commands,#anket-commands input'
).
removeClass
(
'anket-opacity anket-transparent anket-translucent anket-transparent-content'
).
addClass
(
'anket-transparent'
);
$
(
'#anket-container'
).
removeClass
(
'anket-opacity anket-transparent anket-translucent anket-transparent-content'
).
addClass
(
'anket-transparent-content'
);
canvas
.
setAttribute
(
'anket-commands'
,
'anket-transparent'
);
}
else
if
(
$
(
this
).
index
()
==
1
)
{
// set translucent
//END TRB00092 - EDITOR: Long - Date: 09/26/2013 - Summary : Fix opacity
$
(
'#dialog,#dialog iframe,#anket-commands,#anket-commands input,#anket-container'
).
removeClass
(
'anket-opacity anket-transparent anket-translucent anket-transparent-content'
).
addClass
(
'anket-translucent'
);
canvas
.
setAttribute
(
'anket-commands'
,
'anket-translucent'
);
}
else
{
//set opacity
$
(
'#dialog,#dialog iframe,#anket-commands,#anket-commands input,#anket-container'
).
removeClass
(
'anket-opacity anket-transparent anket-translucent anket-transparent-content'
).
addClass
(
'anket-opacity'
);
canvas
.
setAttribute
(
'anket-commands'
,
'anket-opacity'
);
}
}
);
...
...
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