Commit c4766d8b by Kim Eunchul

#40387 【TECSS(Biz) webviewer 1.9】組み込み動画再生中に回転すると、再生され続ける

parent 828ff90a
......@@ -5811,6 +5811,13 @@ CONTENTVIEW.rotateR = function() {
//CONTENTVIEW.srcRect.width = 0;
if($('#rotatebtnR').attr('angle') != '0'){
if(document.getElementById('videoOnPage')){
var videoObj = document.getElementById('videoOnPage');
videoObj.remove();
}
}
CONTENTVIEW.changePageWithoutSlide($("#txtSlider").val() - 1);
CONTENTVIEW.changeScale(CONTENTVIEW.userScale);
......@@ -5834,6 +5841,13 @@ CONTENTVIEW.rotateL = function() {
}
//CONTENTVIEW.srcRect.width = 0;
if($('#rotatebtnR').attr('angle') != '0'){
if(document.getElementById('videoOnPage')){
var videoObj = document.getElementById('videoOnPage');
videoObj.remove();
}
}
CONTENTVIEW.changePageWithoutSlide($("#txtSlider").val() - 1);
......
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