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
71785676
Commit
71785676
authored
Feb 12, 2015
by
Masaru Abe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
動画再生リピート初期値設置対応
parent
a546adaa
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletions
+14
-1
abvw/common/js/common.js
+4
-0
abvw/common/json/sys/conf.json
+2
-1
abvw/js/settings.js
+8
-0
No files found.
abvw/common/js/common.js
View file @
71785676
...
...
@@ -2204,8 +2204,12 @@ $(function () {
// 動画、音楽繰り返し
if
(
ClientData
.
userOpt_musicMode
()
==
null
||
ClientData
.
userOpt_musicMode
()
==
undefined
)
{
if
(
AVWEB
.
avwSysSetting
().
optMusicMode
!=
undefined
){
ClientData
.
userOpt_musicMode
(
AVWEB
.
avwSysSetting
().
optMusicMode
);
}
else
{
ClientData
.
userOpt_musicMode
(
1
);
}
}
if
(
ClientData
.
userOpt_videoMode
()
==
null
||
ClientData
.
userOpt_videoMode
()
==
undefined
)
{
ClientData
.
userOpt_videoMode
(
1
);
}
...
...
abvw/common/json/sys/conf.json
View file @
71785676
...
...
@@ -13,5 +13,6 @@
"anonymousLoginPath"
:
"test"
,
"anonymousLoginId"
:
"nologin"
,
"appName"
:
"ABookWebCL"
,
"appVersion"
:
"0.0.1"
"appVersion"
:
"0.0.1"
,
"optMusicMode"
:
1
}
abvw/js/settings.js
View file @
71785676
...
...
@@ -630,7 +630,15 @@ SETTINGS.dspOptReset_Click = function(e) {
// 最初の画面を選択
$
(
"#rdoOpt001"
).
attr
(
'checked'
,
'checked'
);
// 動画、音楽繰り返し
if
(
AVWEB
.
avwSysSetting
().
optMusicMode
!=
undefined
){
if
(
AVWEB
.
avwSysSetting
().
optMusicMode
==
1
){
$
(
"#chkOpt002"
).
attr
(
'checked'
,
'checked'
);
}
else
{
$
(
"#chkOpt002"
).
removeAttr
(
'checked'
);
}
}
else
{
$
(
"#chkOpt002"
).
attr
(
'checked'
,
'checked'
);
}
// マーキング(コンテンツを開いた時に表示する)
$
(
"#chkOpt003"
).
attr
(
'checked'
,
'checked'
);
// Show alert when press F5.close tab.broswer
...
...
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