Commit 2048b3e5 by vietdo

#16109 【Web 1.6.2】試験結果がログ閲覧できない

parent 88baf51f
...@@ -934,17 +934,17 @@ CONTENTVIEW.showErrorScreen = function() { ...@@ -934,17 +934,17 @@ CONTENTVIEW.showErrorScreen = function() {
}); });
$('.toast-type-error').css('height', '100px'); $('.toast-type-error').css('height', '100px');
$('.toast-type-error > p').css('padding-top', '35px'); $('.toast-type-error > p').css('padding-top', '35px');
//オーサリングプレビュー対応 //オーサリングプレビュー対応
if(COMMON.isAuthoringPreview() && CONTENTVIEW_GENERAL.pid != ''){ if(COMMON.isAuthoringPreview() && CONTENTVIEW_GENERAL.pid != ''){
$('.toast-item-close').live('click', function(){ $('.toast-item-close').live('click', function(){
window.open('', '_self', ''); window.open('', '_self', '');
window.close(); window.close();
}); });
} else { } else {
$('.toast-item-close').live('click', CONTENTVIEW_EVENTS.imgBack_click); $('.toast-item-close').live('click', CONTENTVIEW_EVENTS.imgBack_click);
} }
}; };
/* display alert screen*/ /* display alert screen*/
...@@ -2825,7 +2825,7 @@ CONTENTVIEW.ContentPage.prototype.addPageObjects = function (pageObjects) { ...@@ -2825,7 +2825,7 @@ CONTENTVIEW.ContentPage.prototype.addPageObjects = function (pageObjects) {
obj.height, obj.height,
obj.visible, obj.visible,
obj.showResult, obj.showResult,
obj.endResult, obj.sendResult,
obj.replyLimit, obj.replyLimit,
obj.fullScreen, obj.fullScreen,
obj.saveAs, obj.saveAs,
...@@ -3658,12 +3658,12 @@ CONTENTVIEW.setDefaultEvent = function() { ...@@ -3658,12 +3658,12 @@ CONTENTVIEW.setDefaultEvent = function() {
$('#button_pre_canvas').css('opacity', '0'); $('#button_pre_canvas').css('opacity', '0');
$('#button_next_canvas').css('opacity', '0'); $('#button_next_canvas').css('opacity', '0');
}); });
//オーサリングプレビュー対応 //オーサリングプレビュー対応
if(COMMON.isAuthoringPreview() && CONTENTVIEW_GENERAL.pid != ''){ if(COMMON.isAuthoringPreview() && CONTENTVIEW_GENERAL.pid != ''){
$('#close_screen').click(function(){ $('#close_screen').click(function(){
window.open('', '_self', ''); window.open('', '_self', '');
window.close(); window.close();
}); });
} }
......
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