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
0de812be
Commit
0de812be
authored
Dec 16, 2015
by
vietdo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#18760 Web版で新コンテンツタイプの一覧表示、詳細画面を追加する
parent
fe119d4d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
abvw/js/contentview.js
+9
-7
No files found.
abvw/js/contentview.js
View file @
0de812be
...
...
@@ -2117,11 +2117,13 @@ CONTENTVIEW.displayOverlayForSpecifyContentType = function( resourceUrl ){
else
if
(
CONTENTVIEW_GENERAL
.
contentType
==
COMMON
.
ContentTypeKeys
.
Type_PanoMovie
){
var
url
=
ClientData
.
conf_apiUrl
();
var
linkUrlTmp
=
AVWEB
.
format
(
url
,
ClientData
.
userInfo_accountPath
());
var
apiUrl
=
linkUrlTmp
+
"/createSession/"
;
linkUrlTmp
=
linkUrlTmp
.
substring
(
0
,
linkUrlTmp
.
length
-
6
)
+
"shop/panorama/play/"
+
ClientData
.
contentInfo_contentId
()
+
"/"
;
if
(
ClientData
.
isGetitsMode
()
==
true
){
CONTENTVIEW
.
handleForContentTypePanoMovie
(
linkUrlTmp
);
if
(
ClientData
.
isGetitsMode
()
==
true
){
var
linkUrlGetits
=
linkUrlTmp
.
substring
(
0
,
linkUrlTmp
.
length
-
6
)
+
"open/panorama/play/"
+
ClientData
.
contentInfo_contentId
()
+
"/"
;
CONTENTVIEW
.
handleForContentTypePanoMovie
(
linkUrlGetits
);
}
else
{
var
apiUrl
=
linkUrlTmp
+
"/createSession/"
;
linkUrlTmp
=
linkUrlTmp
.
substring
(
0
,
linkUrlTmp
.
length
-
6
)
+
"shop/panorama/play/"
+
ClientData
.
contentInfo_contentId
()
+
"/"
;
var
params
=
{
sid
:
ClientData
.
userInfo_sid
()
};
...
...
@@ -2146,8 +2148,8 @@ CONTENTVIEW.displayOverlayForSpecifyContentType = function( resourceUrl ){
/* call custom error process */
console
.
log
(
"error"
+
errorThrown
);
}
});
}
});
}
}
else
if
(
CONTENTVIEW_GENERAL
.
contentType
==
COMMON
.
ContentTypeKeys
.
Type_Html
){
...
...
@@ -2326,7 +2328,7 @@ CONTENTVIEW.handleForContentTypePanoMovie = function(resourceUrl){
$container
.
css
(
'-webkit-overflow-scrolling'
,
'touch'
);
}
else
{
$container
.
html
(
'<iframe src="'
+
resourceUrl
+
'" style="position: absolute; width: 100%; height: 100%; "> </iframe>'
);
$container
.
html
(
'<iframe src="'
+
resourceUrl
+
'"
allowfullscreen="true" webkitallowfullscreen="true" mozallowfullscreen="true"
style="position: absolute; width: 100%; height: 100%; "> </iframe>'
);
$container
.
css
(
'overflow'
,
'hidden'
);
}
//END TRB00076 - EDITOR : Long - Date : 09/24/2013 - Summary : Fix for scrolling on ipad
...
...
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