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
e1ebe974
Commit
e1ebe974
authored
Apr 24, 2015
by
Masaru Abe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#15764 CMSオーサリングプレビューの試験クイズ対応
parent
4eebf66c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
abvw/common/js/common.js
+20
-0
No files found.
abvw/common/js/common.js
View file @
e1ebe974
...
...
@@ -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
;
}
};
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