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
e0190dc8
Commit
e0190dc8
authored
Aug 08, 2018
by
Masaru Abe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
console.logのコメント化と例外対応追加
parent
3411759a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
11 deletions
+13
-11
abvw/common/js/textObject.js
+0
-1
abvw/js/contentview.js
+11
-9
abvw/js/share.js
+2
-1
No files found.
abvw/common/js/textObject.js
View file @
e0190dc8
...
@@ -134,7 +134,6 @@ TEXTOBJECT.getTextObjectImage = function(width, height, htmlData) {
...
@@ -134,7 +134,6 @@ TEXTOBJECT.getTextObjectImage = function(width, height, htmlData) {
end
:
function
(
tag
)
{
end
:
function
(
tag
)
{
var
t
=
tag
.
toLowerCase
();
var
t
=
tag
.
toLowerCase
();
console
.
log
(
"the"
+
t
);
/*
/*
* Uタグ
* Uタグ
*/
*/
...
...
abvw/js/contentview.js
View file @
e0190dc8
...
@@ -6172,7 +6172,7 @@ CONTENTVIEW.getSessionId = function(){
...
@@ -6172,7 +6172,7 @@ CONTENTVIEW.getSessionId = function(){
};
};
CONTENTVIEW
.
resvCustomLog
=
function
(
param1
,
param2
,
param3
,
param4
,
param5
){
CONTENTVIEW
.
resvCustomLog
=
function
(
param1
,
param2
,
param3
,
param4
,
param5
){
console
.
log
(
"resvCustomLog:"
+
param1
+
"-"
+
param2
);
//
console.log("resvCustomLog:" + param1 + "-" + param2);
//カスタムログ作成
//カスタムログ作成
var
customLog
=
new
CustomLogEntity
();
var
customLog
=
new
CustomLogEntity
();
...
@@ -6261,15 +6261,17 @@ CONTENTVIEW.panoLog = function(log, scheme){
...
@@ -6261,15 +6261,17 @@ CONTENTVIEW.panoLog = function(log, scheme){
CONTENTVIEW
.
receivePanoLog
=
function
(
e
)
{
CONTENTVIEW
.
receivePanoLog
=
function
(
e
)
{
var
log
=
JSON
.
parse
(
e
.
data
);
try
{
var
log
=
JSON
.
parse
(
e
.
data
);
if
(
log
.
hasOwnProperty
(
'scheme'
)){
if
(
log
.
hasOwnProperty
(
'scheme'
)){
CONTENTVIEW
.
panoLog
(
log
,
log
.
scheme
);
CONTENTVIEW
.
panoLog
(
log
,
log
.
scheme
);
}
else
{
}
else
{
CONTENTVIEW
.
panoContentLink
(
log
.
contentId
,
log
.
page
);
}
}
catch
(
err
)
{
AVWEB
.
avwLog
(
err
);
}
CONTENTVIEW
.
panoContentLink
(
log
.
contentId
,
log
.
page
);
}
};
};
//360コンテンツにhotspotをクリックする時にログを取得する
//360コンテンツにhotspotをクリックする時にログを取得する
...
...
abvw/js/share.js
View file @
e0190dc8
...
@@ -217,7 +217,8 @@ SHARE.sendContentShare = function() {
...
@@ -217,7 +217,8 @@ SHARE.sendContentShare = function() {
//$(":button:contains('Ok')").prop("disabled", true).addClass("ui-state-disabled");
//$(":button:contains('Ok')").prop("disabled", true).addClass("ui-state-disabled");
}
else
{
}
else
{
$
(
'#dlgContentShare_error'
).
show
();
console
.
log
(
data
.
errorMessage
);
$
(
'#dlgContentShare_error'
).
show
();
//console.log(data.errorMessage);
$
(
'#dlgContentShare_error'
).
html
(
data
.
errorMessage
);
$
(
'#dlgContentShare_error'
).
html
(
data
.
errorMessage
);
}
}
},
},
...
...
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