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
19c673ff
Commit
19c673ff
authored
Jan 21, 2015
by
Masaru Abe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
getitsプレビュー対応
parent
5eeca1bb
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
332 additions
and
79 deletions
+332
-79
abvw/common/js/avweb.js
+8
-0
abvw/common/js/common.js
+10
-0
abvw/contentview_getits.html
+223
-0
abvw/js/contentview.js
+17
-3
abvw/js/contentview_CreateObjects.js
+19
-29
abvw/js/contentview_Events.js
+3
-2
abvw/js/contentview_General.js
+1
-1
abvw/js/contentview_GetData.js
+0
-7
abvw/js/contentview_Getits.js
+34
-0
abvw/js/contentview_ImagePreview.js
+1
-1
abvw/js/login.js
+11
-23
custom/getits/login.html
+5
-13
No files found.
abvw/common/js/avweb.js
View file @
19c673ff
...
...
@@ -49,6 +49,14 @@ var UserEnvironment = function() {
return
false
;
}
};
/* mobile check */
this
.
isMobile
=
function
()
{
if
(
this
.
os
==
"ipad"
||
this
.
os
==
"iphone"
||
this
.
os
==
"android"
){
return
true
;
}
else
{
return
false
;
}
};
/** check operating system */
function
checkOS
(
userAgent
)
{
...
...
abvw/common/js/common.js
View file @
19c673ff
...
...
@@ -120,6 +120,7 @@ COMMON.ScreenIds = {
ContentSearch
:
'contentsearch.html?__UPDATEID__'
,
History
:
'history.html?__UPDATEID__'
,
ContentViewStreaming
:
'contentview_streaming.html?__UPDATEID__'
,
ContentViewGetits
:
'contentview_getits.html?__UPDATEID__'
};
COMMON
.
Keys
=
{
...
...
@@ -355,6 +356,7 @@ COMMON.Keys = {
conf_apiUrl
:
'conf_apiUrl'
,
conf_apiLoginUrl
:
'conf_apiLoginUrl'
,
conf_apiResourceDlUrl
:
'conf_apiResourceDlUrl'
,
storeUrl
:
'storeUrl'
,
latitude
:
'latitude'
,
longitude
:
'longitude'
...
...
@@ -1669,6 +1671,14 @@ var ClientData = {
}
},
storeUrl
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
COMMON
.
Keys
.
storeUrl
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
COMMON
.
Keys
.
storeUrl
);
}
},
latitude
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
COMMON
.
Keys
.
latitude
,
data
);
...
...
abvw/contentview_getits.html
0 → 100644
View file @
19c673ff
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
>
<!-- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> -->
<meta
http-equiv=
"Pragma"
content=
"no-cache"
>
<meta
http-equiv=
"Cache-Control"
content=
"no-store"
>
<meta
http-equiv=
"Cache-Control"
content=
"no-cache"
>
<meta
http-equiv=
"Expires"
content=
"-1"
>
<meta
name=
"viewport"
content=
"target-densitydpi=device-dpi,width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"
/>
<!--
<meta name="viewport" content="target-densitydpi=device-dpi,width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
<meta name="viewport" content="width=device-width,target-densitydpi=128" />
-->
<title></title>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"./common/css/jquery-ui.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"./common/css/jquery.toastmessage.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"./common/css/default.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"./common/css/screenLock.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"./css/delete_shiori.css?__UPDATEID__"
/>
<script
type=
"text/javascript"
src=
"./common/js/jquery-1.8.3.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./common/js/jquery-ui-1.8.23.custom.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./common/js/jquery.ui.touch-punch.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./common/js/jquery.toastmessage.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./common/js/jquery.cookie.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./common/js/jquery.treeview.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./common/js/jquery.treeview.edit.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./common/js/screenLock.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./common/js/avweb.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./common/js/i18n.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./common/js/common.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./common/js/htmlparser.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./common/js/textObject.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./common/js/uuid.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_CallApi.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_Events.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_GetData.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_InitObjects.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_CreateObjects.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_General.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview.js?20141201002__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_Memo.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_Gomu.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_Maker.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_Pen.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_Marking.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_PopupText.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_Paint.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_Anket.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_3d.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_ContentTypeNone.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_ImagePreview.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_Getits.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./common/js/zoomDetector.js?__UPDATEID__"
></script>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/reset.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/layout/viewer.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/theme/viewer.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"common/css/jquery.treeview.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"common/css/jquery.powertip.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/layout/Anket.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/theme/Anket.css?__UPDATEID__"
/>
<script
type=
"text/javascript"
src=
"./common/js/jquery.powertip.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./common/js/script.js?__UPDATEID__"
></script>
<style>
html
{
-ms-touch-action
:
none
;
}
body
{
-webkit-text-size-adjust
:
100%
;
}
#header_menu
{
width
:
100%
;
height
:
45px
;
padding
:
0
;
margin
:
0
;
list-style-type
:
none
;
background
:
#ff7400
;
z-index
:
9999
;
position
:
absolute
;
top
:
0
;
opacity
:
0.6
;
}
#header_menu
li
{
width
:
40%
;
float
:
right
;
padding
:
0
;
margin
:
0
;
text-align
:
center
;
}
#header_menu
li
a
{
width
:
auto
;
color
:
#fff
;
font-size
:
14px
;
font-weight
:
bold
;
margin
:
0
;
padding
:
0px
0
;
text-decoration
:
none
;
display
:
block
;
}
#header_menu
li
a
:hover
{
background
:
#ffa443
;
}
#footer_menu
{
width
:
100%
;
height
:
45px
;
padding
:
0
;
margin
:
0
;
list-style-type
:
none
;
background
:
#ff7400
;
z-index
:
9999
;
position
:
absolute
;
bottom
:
0
;
opacity
:
0.6
;
}
#footer_menu
li
{
width
:
14.2%
;
float
:
left
;
padding
:
0
;
margin
:
0
;
text-align
:
center
;
}
#footer_menu
li
a
{
width
:
auto
;
color
:
#fff
;
font-size
:
14px
;
font-weight
:
bold
;
margin
:
0
;
padding
:
6px
0
;
text-decoration
:
none
;
display
:
block
;
}
#footer_menu
li
a
:hover
{
background
:
#ffa443
;
}
</style>
<script
type=
"text/javascript"
>
$
(
document
).
ready
(
function
()
{
//CONTENTVIEW.ready();
//CONTENTVIEW_STREAMING.ready();
});
</script>
</head>
<body
id=
"viewer"
oncontextmenu=
"return false;"
>
<div
id=
"wrapper"
>
<!--Viewer component is added here -->
<div
id=
"overlay"
class=
"web_dialog_overlay"
>
</div>
<div
id=
"dialog"
class=
"web_dialog"
>
</div>
<div
id=
"button_pre_canvas"
class=
"gBackbtn"
></div>
<div
id=
"button_next_canvas"
class=
"gNextbtn"
></div>
<div
id=
"divDialogMemo"
></div>
<div
id=
"dialog-contenttype-music"
></div>
<div
id=
"dialogPopUp"
class=
"popuptext_web_dialog"
></div>
<div
id=
"arrow"
class=
"popuptext_arrow"
></div>
<div
id=
"pop_up_memo"
class=
"pop-up-memo"
>
<a
id=
"btn_show_memo"
class=
"lang"
lang =
"txtMemoEdit"
>
</a>
<br
/><br
/>
<a
id=
"btn_copy_memo"
class=
"lang"
lang =
"txtMemoCopy"
>
</a>
</div>
<div
id=
"divImageLoading"
>
<img
src=
"img/view_loading.gif"
width=
"64px"
height=
"64px"
>
</div>
<section
id=
"bgmConfirm"
class=
"sectionDeleteConfirm"
>
<h1
class=
"lang"
lang=
""
>
</h1>
<p
class=
"message lang"
lang=
"msgBGMPlayConfirm"
id=
"txtAudio"
>
<!--このコンテンツはBGMが流れるようになっています。BGMを再生してもよろしいですか?-->
</p>
<p
class=
"deletebtn"
><a
id=
"bgmConfirm_dspOK"
lang=
"dspOK"
class=
"ok_audio lang"
>
<!--OK-->
</a></p>
</section>
<section
id=
"bgmConfirm_page"
class=
"sectionDeleteConfirm"
>
<h1
class=
"lang"
lang=
""
>
</h1>
<p
class=
"message lang"
lang=
"msgBGMPlayConfirm"
id=
"txtAudio_page"
>
<!--このコンテンツはBGMが流れるようになっています。BGMを再生してもよろしいですか?-->
</p>
<p
class=
"deletebtn"
><a
id=
"bgmConfirm_dspOK_page"
lang=
"dspOK"
class=
"ok_audio lang"
>
<!--OK-->
</a></p>
</section>
<section
id=
"contentVideoConfirm"
class=
"sectionDeleteConfirm"
>
<h1
class=
"lang"
lang=
""
>
</h1>
<p
class=
"message lang"
lang=
"txtMediaAutoPlayWarning"
id=
"txtContentVideo"
>
<!--Confirm Play Video-->
</p>
<p
class=
"deletebtn"
><a
id=
"contentVideoConfirm_OK"
lang=
"dspOK"
class=
"ok_audio lang"
>
<!--OK-->
</a></p>
</section>
<section
id=
"contentAudioConfirm"
class=
"sectionDeleteConfirm"
>
<h1
class=
"lang"
lang=
""
>
</h1>
<p
class=
"message lang"
lang=
"txtMediaAutoPlayWarning"
id=
"txtContentAudio"
>
<!--Confirm Play Audio-->
</p>
<p
class=
"deletebtn"
><a
id=
"contentAudioConfirm_OK"
lang=
"dspOK"
class=
"ok_audio lang"
>
<!--OK-->
</a></p>
</section>
</div>
<div
id=
"debug"
></div>
<div
id=
"menu"
style=
"display:none;"
>
<ul
id=
"header_menu"
>
<li><a
id=
"moveStore"
><img
src=
"img/menu/appstore.jpg"
alt=
""
></a></li>
</ul>
<ul
id=
"footer_menu"
>
<li><a
id=
"firstpage"
><img
src=
"img/menu/icon-fast-forward.png"
alt=
""
></a></li>
<li><a
id=
"prevpage"
><img
src=
"img/menu/icon-chevron-left.png"
alt=
""
></a></li>
<li><a
id=
"nextpage"
><img
src=
"img/menu/icon-chevron-right.png"
alt=
""
></a></li>
<li><a
id=
"lastpage"
><img
src=
"img/menu/icon-fast-backward.png"
alt=
""
></a></li>
<li><a
id=
"zoomin"
><img
src=
"img/menu/icon-zoom-in.png"
alt=
""
></a></li>
<li><a
id=
"zoomfit"
><img
src=
"img/menu/icon-resize-small.png"
alt=
""
></a></li>
<li><a
id=
"zoomout"
><img
src=
"img/menu/icon-zoom-out.png"
alt=
""
></a></li>
</ul>
</div>
<iframe
style=
"height:0px;width:0px;visibility:hidden"
src=
"about:blank"
>
this frame prevents back forward cache
</iframe>
</body>
</html>
abvw/js/contentview.js
View file @
19c673ff
...
...
@@ -5257,6 +5257,20 @@ CONTENTVIEW.deleteMaxPageOverData = function() {
};
CONTENTVIEW
.
handleDisplayMobileToolbar
=
function
(){
if
(
$
(
'#menu'
).
length
){
if
(
$
(
'#menu'
).
is
(
':hidden'
))
{
// 非表示の場合の処理
$
(
'#menu'
).
show
();
}
else
{
// 表示されている場合の処理
$
(
'#menu'
).
hide
();
}
}
};
$
(
"document"
).
ready
(
function
()
{
//CONTENTVIEW.ready = function(){
...
...
@@ -5303,7 +5317,7 @@ $("document").ready(function () {
/**
* constants
*/
if
(
ClientData
.
isStreamingMode
()){
if
(
ClientData
.
isStreamingMode
()
||
(
CONTENTVIEW_GENERAL
.
avwUserEnvObj
.
isMobile
()
&&
ClientData
.
isGetitsMode
())
){
CONTENTVIEW
.
marginX
=
13
;
CONTENTVIEW
.
marginY
=
5
;
}
else
{
...
...
@@ -5343,7 +5357,7 @@ $("document").ready(function () {
if
(
CONTENTVIEW_GENERAL
.
avwUserEnvObj
.
isIos
())
{
if
(
ClientData
.
isStreamingMode
()){
if
(
ClientData
.
isStreamingMode
()
||
CONTENTVIEW_GENERAL
.
avwUserEnvObj
.
isMobile
()
){
//ClientData.IsRefresh(true);
}
else
{
//ストリーミング対応以外では元の設定活かす
...
...
@@ -5400,7 +5414,7 @@ $("document").ready(function () {
ClientData
.
IsJumpBack
(
false
);
var
moveScreen
=
null
;
if
(
!
ClientData
.
isStreamingMode
()){
if
(
!
ClientData
.
isStreamingMode
()
&&
!
ClientData
.
isGetitsMode
()
){
moveScreen
=
COMMON
.
ScreenIds
.
Home
;
}
...
...
abvw/js/contentview_CreateObjects.js
View file @
19c673ff
...
...
@@ -798,7 +798,7 @@ CONTENTVIEW_CREATEOBJECT.trigger = function (mediaType, actionType, id, imageUrl
CONTENTVIEW
.
stopAllAudio
();
CONTENTVIEW
.
showVideoObject
(
CONTENTVIEW
.
objType4_5
[
nIndex
].
x
,
CONTENTVIEW
.
objType4_5
[
nIndex
].
y
,
CONTENTVIEW
.
objType4_5
[
nIndex
].
width
,
CONTENTVIEW
.
objType4_5
[
nIndex
].
height
,
CONTENTVIEW
.
objType4_5
[
nIndex
].
dataObjects
[
nIndex1
].
fileName
,
false
);
if
(
ClientData
.
isStreamingMode
()){
if
(
ClientData
.
isStreamingMode
()
||
ClientData
.
isGetitsMode
()
){
if
(
CONTENTVIEW_GENERAL
.
avwUserEnvObj
.
isAndroid
())
{
var
myVideo
=
document
.
getElementById
(
"videoOnPage"
);
if
(
myVideo
.
paused
)
...
...
@@ -1224,10 +1224,14 @@ CONTENTVIEW_CREATEOBJECT.moveToContent = function (mediaType, actionType, id, im
//ストリーミングのビューアへ移動
AVWEB
.
avwScreenMove
(
COMMON
.
ScreenIds
.
ContentViewStreaming
);
}
else
{
if
(
CONTENTVIEW_GENERAL
.
avwUserEnvObj
.
isMobile
()
&&
ClientData
.
isGetitsMode
()
)
{
AVWEB
.
avwScreenMove
(
COMMON
.
ScreenIds
.
ContentViewGetits
);
}
else
{
AVWEB
.
avwScreenMove
(
COMMON
.
ScreenIds
.
ContentView
);
}
}
}
}
//Type 0
else
{
ClientData
.
common_preContentId
(
contentId
);
...
...
@@ -1243,9 +1247,13 @@ CONTENTVIEW_CREATEOBJECT.moveToContent = function (mediaType, actionType, id, im
//ストリーミングのビューアへ移動
AVWEB
.
avwScreenMove
(
COMMON
.
ScreenIds
.
ContentViewStreaming
);
}
else
{
if
(
CONTENTVIEW_GENERAL
.
avwUserEnvObj
.
isMobile
()
&&
ClientData
.
isGetitsMode
())
{
AVWEB
.
avwScreenMove
(
COMMON
.
ScreenIds
.
ContentViewGetits
);
}
else
{
AVWEB
.
avwScreenMove
(
COMMON
.
ScreenIds
.
ContentView
);
}
}
}
},
function
(
xmlHttpRequest
,
txtStatus
,
errorThrown
)
{
...
...
@@ -1315,8 +1323,12 @@ CONTENTVIEW_CREATEOBJECT.createAlertTypeDialog = function(msg){
//ストリーミングのビューアへ移動
AVWEB
.
avwScreenMove
(
COMMON
.
ScreenIds
.
ContentViewStreaming
);
}
else
{
if
(
CONTENTVIEW_GENERAL
.
avwUserEnvObj
.
isMobile
()
&&
ClientData
.
isGetitsMode
())
{
AVWEB
.
avwScreenMove
(
COMMON
.
ScreenIds
.
ContentViewGetits
);
}
else
{
AVWEB
.
avwScreenMove
(
COMMON
.
ScreenIds
.
ContentView
);
}
}
});
};
...
...
@@ -1386,9 +1398,13 @@ CONTENTVIEW_CREATEOBJECT.createPwdRequiredTypeDialog = function(){
//ストリーミングのビューアへ移動
AVWEB
.
avwScreenMove
(
COMMON
.
ScreenIds
.
ContentViewStreaming
);
}
else
{
if
(
CONTENTVIEW_GENERAL
.
avwUserEnvObj
.
isMobile
()
&&
ClientData
.
isGetitsMode
())
{
AVWEB
.
avwScreenMove
(
COMMON
.
ScreenIds
.
ContentViewGetits
);
}
else
{
AVWEB
.
avwScreenMove
(
COMMON
.
ScreenIds
.
ContentView
);
}
}
}
else
{
$
(
'#lblMessageLimitError'
).
html
(
AVWEB
.
format
(
I18N
.
i18nText
(
'msgLoginErrWrong'
),
data
.
errorMessage
).
toString
()).
show
();
}
...
...
@@ -1437,7 +1453,7 @@ CONTENTVIEW_CREATEOBJECT.videoType2 = function (mediaType, actionType, id, image
if
(
embed
==
"1"
)
{
CONTENTVIEW
.
showVideoObject
(
x
,
y
,
w
,
h
,
mediaFile
,
false
);
if
(
ClientData
.
isStreamingMode
()){
if
(
ClientData
.
isStreamingMode
()
||
CONTENTVIEW_GENERAL
.
avwUserEnvObj
.
isMobile
()
){
if
(
CONTENTVIEW_GENERAL
.
avwUserEnvObj
.
isAndroid
())
{
var
myVideo
=
document
.
getElementById
(
"videoOnPage"
);
if
(
myVideo
.
paused
)
...
...
@@ -1496,7 +1512,7 @@ CONTENTVIEW_CREATEOBJECT.videoType2 = function (mediaType, actionType, id, image
CONTENTVIEW_GENERAL
.
showDialog
(
true
);
if
(
ClientData
.
isStreamingMode
()){
if
(
ClientData
.
isStreamingMode
()
||
CONTENTVIEW_GENERAL
.
avwUserEnvObj
.
isMobile
()
){
if
(
CONTENTVIEW_GENERAL
.
avwUserEnvObj
.
isAndroid
())
{
var
myVideo
=
document
.
getElementById
(
"videoOnPopUp"
);
if
(
myVideo
.
paused
)
...
...
@@ -1506,32 +1522,6 @@ CONTENTVIEW_CREATEOBJECT.videoType2 = function (mediaType, actionType, id, image
}
}
/*
if(ClientData.isStreamingMode()){
if (CONTENTVIEW_GENERAL.avwUserEnvObj.isAndroid()) {
// Show confim message to play background music
$("#contentVideoConfirm").css('z-index', 9998);
$("#contentVideoConfirm_OK").unbind('touchstart');
document.getElementById('contentVideoConfirm_OK').addEventListener('touchstart', function(event){
event.preventDefault();
//alert("hoge");
var myVideo=document.getElementById("videoOnPopUp");
if (myVideo.paused)
{
myVideo.play();
}
$("#contentVideoConfirm").hide();
return false;
}, false);
$("#contentVideoConfirm").show();
$("#contentVideoConfirm").center();
}
}
*/
}
}
};
...
...
abvw/js/contentview_Events.js
View file @
19c673ff
...
...
@@ -2175,8 +2175,9 @@ CONTENTVIEW_EVENTS.onTouchend = function(evt){
}
//CONTENTVIEW_STREAMING.debugLog("CONTENTVIEW_EVENTS.onTouchEnd");
CONTENTVIEW_STREAMING
.
handleDisplayToolbar
();
if
(
CONTENTVIEW_GENERAL
.
avwUserEnvObj
.
isMobile
())
{
CONTENTVIEW
.
handleDisplayMobileToolbar
();
}
}
}
}
...
...
abvw/js/contentview_General.js
View file @
19c673ff
...
...
@@ -531,7 +531,7 @@ CONTENTVIEW_GENERAL.clearCanvas = function(targetCanvas) {
CONTENTVIEW_GENERAL
.
showDialog
=
function
(
modal
)
{
if
(
ClientData
.
isStreamingMode
()){
if
(
ClientData
.
isStreamingMode
()
||
CONTENTVIEW_GENERAL
.
avwUserEnvObj
.
isMobile
()
){
$
(
"#dialog"
).
css
(
'z-index'
,
998
);
$
(
"#dialog"
).
fadeIn
(
300
);
}
else
{
...
...
abvw/js/contentview_GetData.js
View file @
19c673ff
...
...
@@ -95,13 +95,6 @@ CONTENTVIEW_GETDATA.getMediaType1 = function(iValueObj) {
* Action Type = 11 : html
*/
//ストリーミングならemailは表示しない
//if(ClientData.isStreamingMode()){
// if (iValueObj.action.actionType == 6) {
// return null;
// }
//}
var
pageObject
=
[];
pageObject
[
'mediaType'
]
=
iValueObj
.
mediaType
;
...
...
abvw/js/contentview_Getits.js
0 → 100644
View file @
19c673ff
//名前空間用のオブジェクトを用意する
var
CONTENTVIEW_GETITS
=
{};
CONTENTVIEW_GETITS
.
isShowMenu
=
false
;
CONTENTVIEW_GETITS
.
ready
=
function
(){
//アイコン差し替えk
var
avwUserEnvObj
=
new
UserEnvironment
();
if
(
avwUserEnvObj
.
isAndroid
()
){
$
(
"#moveStore"
).
children
(
"img"
).
attr
({
'src'
:
'img/menu/googleplay.png'
});
}
//ストアリンク作成
$
(
'#moveStore'
).
click
(
CONTENTVIEW_GETITS
.
moveStore
);
};
CONTENTVIEW_GETITS
.
moveStore
=
function
(){
//alert("store:" + decodeURIComponent(ClientData.storeUrl()));
location
.
href
=
decodeURIComponent
(
ClientData
.
storeUrl
());
};
CONTENTVIEW_GETITS
.
debugLog
=
function
(
msg
){
//$("#debug").html(msg);
};
$
(
"document"
).
ready
(
function
()
{
CONTENTVIEW_GETITS
.
ready
();
});
abvw/js/contentview_ImagePreview.js
View file @
19c673ff
...
...
@@ -125,7 +125,7 @@ CONTENTVIEW_IMAGEPREVIEW.optimizeSizeImagePreview = function() {
var
canvas
=
document
.
getElementById
(
'main'
);
if
(
ClientData
.
isStreamingMode
()){
if
(
ClientData
.
isStreamingMode
()
||
CONTENTVIEW_GENERAL
.
avwUserEnvObj
.
isMobile
()
){
if
(
canvas
.
width
<
maxW
){
maxW
=
canvas
.
width
*
0.9
;
maxH
=
maxW
/
ratio
;
...
...
abvw/js/login.js
View file @
19c673ff
...
...
@@ -13,6 +13,7 @@ LOGIN.user_data_backup;
LOGIN
.
marking
;
LOGIN
.
force_login_periodically
;
LOGIN
.
login_errorMessage
=
""
;
LOGIN
.
avwUserEnvObj
=
new
UserEnvironment
();
LOGIN
.
timeWaitSplashScreen
=
2000
;
// wait splash screen 2 second
...
...
@@ -30,8 +31,6 @@ LOGIN.loadLoginInfo = function() {
//Initial Screen
LOGIN
.
initialScreen
=
function
()
{
//Check Last time display language
//ClientData.userInfo_language(localStorage.getItem(I18N.avwsys_storagekey));
if
(
ClientData
.
userInfo_rememberLogin
())
{
LOGIN
.
loadLoginInfo
();
}
...
...
@@ -41,13 +40,6 @@ LOGIN.initialScreen = function() {
LOGIN
.
saveLoginInfo
=
function
()
{
var
lang
=
I18N
.
getCurrentLanguage
();
//clear session of old user
//SessionStorageUtils.clear();
//AVWEB.avwUserSessionObj = null;
// create new session for anonymous user
//AVWEB.avwCreateUserSession();
// load language
I18N
.
changeLanguage
(
lang
);
...
...
@@ -173,14 +165,12 @@ LOGIN.processLogin = function() {
}
// Get url to login
//var sysSettings = AVWEB.avwSysSetting();
var
apiLoginUrl
=
ClientData
.
conf_apiLoginUrl
();
//sysSettings.apiLoginUrl;
//引数パラメータがあれば取得
var
paramContentID
=
COMMON
.
getUrlParam
(
'cid'
,
''
);
AVWEB
.
avwCmsApiWithUrl
(
apiLoginUrl
,
null
,
'webClientLogin'
,
'GET'
,
params
,
function
(
data
)
{
//requirePasswordChange = data.requirePasswordChange;
LOGIN
.
userinfo_sid
=
data
.
sid
;
LOGIN
.
userInfo_userName
=
data
.
userName
;
LOGIN
.
optionList
=
data
.
serviceOptionList
;
...
...
@@ -222,7 +212,6 @@ LOGIN.processLogin = function() {
skipPwdDate
=
ClientData
.
userInfo_pwdSkipDt
();
if
(
skipPwdDate
==
null
||
skipPwdDate
==
'undefined'
)
{
LOGIN
.
OpenChangePasswordDialog
();
$
(
'#btnSkip'
).
show
();
$
(
".ui-dialog-titlebar"
).
hide
();
...
...
@@ -583,10 +572,6 @@ LOGIN.initLoginAnonymousUser = function() {
//警告表示を組み込んだら I18N.i18nText()の値が未定義になるので言語リソース再読み込み
I18N
.
initi18n
();
//AVWEB.avwUserSessionObj = null;
// create new session for anonymous user
//AVWEB.avwCreateUserSession();
// set info user anonymous login
ClientData
.
userInfo_accountPath
(
urlPath
);
ClientData
.
userInfo_accountPath_session
(
urlPath
);
...
...
@@ -658,9 +643,9 @@ LOGIN.initLoginAnonymousUser = function() {
// init login for getits user
LOGIN
.
initLoginGetitsUser
=
function
()
{
document
.
title
=
I18N
.
i18nText
(
'dspLogin'
)
+
' | '
+
I18N
.
i18nText
(
'sysAppTitle'
);
console
.
log
(
"LOGIN.initLoginGetitsUser"
);
//var sysSettings = AVWEB.avwSysSetting(); // get info in conf.json
document
.
title
=
I18N
.
i18nText
(
'dspLogin'
)
+
' | '
+
I18N
.
i18nText
(
'sysAppTitle'
);
var
params
=
{
urlpath
:
ClientData
.
userInfo_accountPath
()
...
...
@@ -677,10 +662,6 @@ LOGIN.initLoginGetitsUser = function() {
//警告表示を組み込んだら I18N.i18nText()の値が未定義になるので言語リソース再読み込み
//I18N.initi18n();
//AVWEB.avwUserSessionObj = null;
// create new session for getits user
//AVWEB.avwCreateUserSession();
ClientData
.
userInfo_userName
(
data
.
userName
);
ClientData
.
userInfo_sid
(
data
.
sid
);
...
...
@@ -785,7 +766,6 @@ LOGIN.showContentViewByOpenUrl = function(strContentId) {
LOGIN
.
alertMessageCancelFunction_callback
();
}
);
//AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.ContentView);
}
},
...
...
@@ -803,7 +783,11 @@ LOGIN.showContentViewByOpenUrl = function(strContentId) {
//警告表示時のOK処理
LOGIN
.
alertMessageOkFunction_callback
=
function
(){
if
(
LOGIN
.
avwUserEnvObj
.
isMobile
()
&&
ClientData
.
isGetitsMode
()
)
{
AVWEB
.
avwScreenMove
(
"abvw/"
+
COMMON
.
ScreenIds
.
ContentViewGetits
);
}
else
{
AVWEB
.
avwScreenMove
(
"abvw/"
+
COMMON
.
ScreenIds
.
ContentView
);
}
};
//警告表示時のキャンセル処理
LOGIN
.
alertMessageCancelFunction_callback
=
function
(){
...
...
@@ -843,12 +827,14 @@ LOGIN.ready = function(){
ClientData
.
isGetitsMode
(
false
);
ClientData
.
isStreamingMode
(
false
);
ClientData
.
storeUrl
(
""
);
//getitsサーバー設定確認
if
(
sysSettings
.
apiUrl
==
""
){
//引数パラメータを取得
var
siteUrl
=
COMMON
.
getUrlParam
(
'siteUrl'
,
''
);
var
urlPath
=
COMMON
.
getUrlParam
(
'urlPath'
,
''
);
var
storeUrl
=
COMMON
.
getUrlParam
(
'storeUrl'
,
''
);
if
(
siteUrl
!=
""
&&
urlPath
!=
""
){
//getitsモード有効
...
...
@@ -862,6 +848,8 @@ LOGIN.ready = function(){
ClientData
.
userInfo_accountPath_session
(
urlPath
);
ClientData
.
userInfo_loginId
(
""
);
ClientData
.
userInfo_loginId_session
(
""
);
//ストア遷移用のURL
ClientData
.
storeUrl
(
storeUrl
);
}
...
...
custom/getits/login.html
View file @
19c673ff
...
...
@@ -40,21 +40,13 @@
}
</style>
<![endif]-->
<!-- <script type="text/javascript">
$('head').append(
'<style type="text/css">#container { display: none; } #fade, #loader { display: block; }</style>'
);
<script
type=
"text/javascript"
>
$
(
document
).
ready
(
function
(){
LOGIN
.
ready
();
});
</script>
jQuery.event.add(window,"load",function() { // 全ての読み込み完了後に呼ばれる関数
var pageH = $("#container").height();
$("#fade").css("height", pageH).delay(900).fadeOut(800);
$("#loader").delay(600).fadeOut(300);
$("#container").css("display", "block");
});
</script>-->
</head>
<body
id=
"login"
>
...
...
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