Commit e1ebe974 by Masaru Abe

#15764 CMSオーサリングプレビューの試験クイズ対応

parent 4eebf66c
......@@ -191,6 +191,8 @@ COMMON.Keys = {
serviceOpt_force_pw_change_periodically: 'force_pw_change_periodically',
// Session:事業者オプション(serviceOpt)_メモ・マーキングデータバックアップ使用:Char(Y:可能, N:不可)
serviceOpt_user_data_backup: 'user_data_backup',
// Session:事業者オプション(serviceOpt)_テキストコピー機能使用:Char(Y:可能, N:不能)
serviceOpt_copy_text: 'copy_text',
// Session :事業者オプション(serviceOpt)_マーキング機能使用:Char(Y:可能, N:不可)
serviceOpt_marking: 'marking',
// No.8: do not use this value: serviceOpt_force_login_periodically
......@@ -1194,6 +1196,14 @@ var ClientData = {
}
},
// Session:事業者オプション(serviceOpt)_テキストコピー機能使用:Char(Y:可能, N:不可)
serviceOpt_copy_text: function (data) {
if (arguments.length > 0) {
SessionStorageUtils.set(COMMON.Keys.serviceOpt_copy_text, data);
} else {
return SessionStorageUtils.get(COMMON.Keys.serviceOpt_copy_text);
}
},
// Session :事業者オプション(serviceOpt)_マーキング機能使用:Char(Y:可能, N:不可)
serviceOpt_marking: function (data) {
if (arguments.length > 0) {
......@@ -3181,5 +3191,15 @@ COMMON.getUrlParam = function(name, url){
}
};
//オーサリングプレビューモードか判定
COMMON.isAuthoringPreview = function(){
if( AVWEB.avwSysSetting().previewFlg != undefined ){
return AVWEB.avwSysSetting().previewFlg;
} else {
return false;
}
};
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