Commit 747e6ba7 by vietdo

#16150 【Web 1.6.2】IE9だと設定したアクションボタンが消える現象が発生する

parent 2048b3e5
...@@ -438,7 +438,14 @@ CONTENTVIEW_CREATEOBJECT.PageObject.prototype.drawPageObject = function (context ...@@ -438,7 +438,14 @@ CONTENTVIEW_CREATEOBJECT.PageObject.prototype.drawPageObject = function (context
} }
else { 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); CONTENTVIEW.flip(opt);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment