Commit f6096c20 by Masaru Abe

JS暗号化エラー対応

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