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
747e6ba7
Commit
747e6ba7
authored
May 09, 2015
by
vietdo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#16150 【Web 1.6.2】IE9だと設定したアクションボタンが消える現象が発生する
parent
2048b3e5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletions
+8
-1
abvw/js/contentview_CreateObjects.js
+8
-1
No files found.
abvw/js/contentview_CreateObjects.js
View file @
747e6ba7
...
...
@@ -438,7 +438,14 @@ CONTENTVIEW_CREATEOBJECT.PageObject.prototype.drawPageObject = function (context
}
else
{
context
.
drawImage
(
img
,
x
,
y
,
w
,
h
);
if
(
$
.
browser
.
msie
&&
$
.
browser
.
version
==
9
)
{
//ブラウザがIE9となっている場合対応する
setTimeout
(
function
(){
context
.
drawImage
(
img
,
x
,
y
,
w
,
h
);
},
100
);
}
else
{
context
.
drawImage
(
img
,
x
,
y
,
w
,
h
);
}
}
CONTENTVIEW
.
flip
(
opt
);
...
...
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