Commit f6096c20 by Masaru Abe

JS暗号化エラー対応

parent c855cacf
SetEnvIf Referer "^http://web3\.agentec\.jp/web_test/" RefererCheck #SetEnvIf Referer "^http://web3\.agentec\.jp/web_test/" RefererCheck
Order deny,allow #Order deny,allow
Deny from all #Deny from all
Allow from env=RefererCheck #Allow from env=RefererCheck
<Files ~ "\.(js|json)$"> <Files ~ "\.(js|json)$">
Header add Pragma "no-cache" Header add Pragma "no-cache"
Header set Cache-Control no-cache Header set Cache-Control no-cache
......
...@@ -4,7 +4,9 @@ ...@@ -4,7 +4,9 @@
var CONTENTVIEW = {}; var CONTENTVIEW = {};
$(document).mouseup(function (e) { $(document).mouseup(function (e) {
if (e.which == 1) CONTENTVIEW_GENERAL.isPressLeftMouse = false if (e.which == 1){
CONTENTVIEW_GENERAL.isPressLeftMouse = false;
}
}); });
/* change size */ /* change size */
...@@ -5546,10 +5548,10 @@ CONTENTVIEW.screenBack = function(){ ...@@ -5546,10 +5548,10 @@ CONTENTVIEW.screenBack = function(){
CONTENTVIEW.initScreen = function(){ CONTENTVIEW.initScreen = function(){
//画面初期化 //画面初期化
if ($('#canvasWrapper').length) { if($('#canvasWrapper').length){
$('#canvasWrapper').empty(); $('#canvasWrapper').empty();
} }
if ($('#dialog').length) { if($('#dialog').length){
$('#dialog').hide(); $('#dialog').hide();
$('#dialog').empty(); $('#dialog').empty();
$('#dialog').removeClass(); $('#dialog').removeClass();
...@@ -5721,7 +5723,7 @@ CONTENTVIEW.webGetContentApi_funcOk = function(data){ ...@@ -5721,7 +5723,7 @@ CONTENTVIEW.webGetContentApi_funcOk = function(data){
//ストリーミングならデバイス側に初期表示済通知 //ストリーミングならデバイス側に初期表示済通知
if(ClientData.isStreamingMode()){ if(ClientData.isStreamingMode()){
CONTENTVIEW_STREAMING.initPageView() CONTENTVIEW_STREAMING.initPageView();
} }
} else { } else {
...@@ -5748,7 +5750,7 @@ CONTENTVIEW.webGetContentApi_funcOk = function(data){ ...@@ -5748,7 +5750,7 @@ CONTENTVIEW.webGetContentApi_funcOk = function(data){
//ストリーミングならデバイス側に初期表示済通知 //ストリーミングならデバイス側に初期表示済通知
if(ClientData.isStreamingMode()){ if(ClientData.isStreamingMode()){
CONTENTVIEW_STREAMING.initPageView() CONTENTVIEW_STREAMING.initPageView();
} }
} }
......
...@@ -30,13 +30,14 @@ modify_api() ...@@ -30,13 +30,14 @@ modify_api()
"screenlockTimeDefault" : 30, "screenlockTimeDefault" : 30,
"pushPageCount" : 5, "pushPageCount" : 5,
"pushTimePeriod" : 60, "pushTimePeriod" : 60,
"debug" : true, "debug" : false,
"loginPage" : "index.html", "loginPage" : "index.html",
"anonymousLoginFlg" : false, "anonymousLoginFlg" : false,
"anonymousLoginPath" : "test", "anonymousLoginPath" : "test",
"anonymousLoginId" : "nologin", "anonymousLoginId" : "nologin",
"appName" : "ABookWebCL", "appName" : "ABookWebCL",
"appVersion" : "0.0.1" "appVersion" : "0.0.1",
"movieCacheLimitMB" : 200
} }
EOF EOF
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment