Commit 7cd43c08 by Masaru Abe

#28316 Windowsパソコン(SurfacePro)での画面スクロール出来ない問題

parent 69c6ee16
...@@ -60,13 +60,6 @@ ...@@ -60,13 +60,6 @@
<script type="text/javascript" src="./common/js/scrolltopcontrol.js?__UPDATEID__"></script> <script type="text/javascript" src="./common/js/scrolltopcontrol.js?__UPDATEID__"></script>
<script type="text/javascript" src="./js/contentview_FileSystem.js?__UPDATEID__"></script> <script type="text/javascript" src="./js/contentview_FileSystem.js?__UPDATEID__"></script>
<style>
html{
-ms-touch-action : none;
touch-action : none ;
}
</style>
</head> </head>
<body id="bookmark" oncontextmenu="return false;"> <body id="bookmark" oncontextmenu="return false;">
<header id="header-ws" class="header_ws"> <header id="header-ws" class="header_ws">
......
...@@ -62,13 +62,6 @@ ...@@ -62,13 +62,6 @@
<script type="text/javascript" src="./common/js/scrolltopcontrol.js?__UPDATEID__"></script> <script type="text/javascript" src="./common/js/scrolltopcontrol.js?__UPDATEID__"></script>
<script type="text/javascript" src="./js/contentview_FileSystem.js?__UPDATEID__"></script> <script type="text/javascript" src="./js/contentview_FileSystem.js?__UPDATEID__"></script>
<style>
html{
-ms-touch-action : none;
touch-action : none ;
}
</style>
</head> </head>
<body id="contentsearch" oncontextmenu="return false;"> <body id="contentsearch" oncontextmenu="return false;">
......
...@@ -65,13 +65,6 @@ ...@@ -65,13 +65,6 @@
<script type="text/javascript" src="./js/detail.js?__UPDATEID__" ></script> <script type="text/javascript" src="./js/detail.js?__UPDATEID__" ></script>
<script type="text/javascript" src="./js/contentview_FileSystem.js?__UPDATEID__"></script> <script type="text/javascript" src="./js/contentview_FileSystem.js?__UPDATEID__"></script>
<style>
html{
-ms-touch-action : none;
touch-action : none ;
}
</style>
</head> </head>
<body id="history" oncontextmenu="return false;"> <body id="history" oncontextmenu="return false;">
......
...@@ -75,13 +75,6 @@ ...@@ -75,13 +75,6 @@
}); });
</script> </script>
<style>
html{
-ms-touch-action : none;
touch-action : none ;
}
</style>
</head> </head>
<body id="bookshelf" oncontextmenu="return false;"> <body id="bookshelf" oncontextmenu="return false;">
......
...@@ -1068,7 +1068,9 @@ BOOKMARK.showContentView = function() { ...@@ -1068,7 +1068,9 @@ BOOKMARK.showContentView = function() {
BOOKMARK.cssInit = function() { BOOKMARK.cssInit = function() {
$('html').css({ $('html').css({
'overflow-y' : 'scroll' 'overflow-y' : 'scroll',
'-ms-touch-action' : 'auto',
'touch-action' : 'auto'
}); });
$('html,body').css({ $('html,body').css({
'height' : '100%', 'height' : '100%',
......
...@@ -1411,7 +1411,9 @@ CONTENTSEARCH.showContentView = function() { ...@@ -1411,7 +1411,9 @@ CONTENTSEARCH.showContentView = function() {
CONTENTSEARCH.cssInit = function() { CONTENTSEARCH.cssInit = function() {
$('html').css({ $('html').css({
'overflow-y' : 'scroll' 'overflow-y' : 'scroll',
'-ms-touch-action' : 'auto',
'touch-action' : 'auto'
}); });
$('html,body').css({ $('html,body').css({
'height' : '100%', 'height' : '100%',
......
...@@ -5508,7 +5508,9 @@ CONTENTVIEW.cssInit = function(){ ...@@ -5508,7 +5508,9 @@ CONTENTVIEW.cssInit = function(){
//CSS //CSS
$('html').css({ $('html').css({
'overflow-y':'', 'overflow-y':'',
'overflow': 'hidden' 'overflow': 'hidden',
'-ms-touch-action' : 'none',
'touch-action' : 'none'
}); });
$('html,body').css({ $('html,body').css({
'height':'100%', 'height':'100%',
......
...@@ -1622,7 +1622,9 @@ HISTORY.showContentView = function() { ...@@ -1622,7 +1622,9 @@ HISTORY.showContentView = function() {
HISTORY.cssInit = function() { HISTORY.cssInit = function() {
$('html').css({ $('html').css({
'overflow-y' : 'scroll' 'overflow-y' : 'scroll',
'-ms-touch-action' : 'auto',
'touch-action' : 'auto'
}); });
$('html,body').css({ $('html,body').css({
'height' : '100%', 'height' : '100%',
......
...@@ -2799,7 +2799,9 @@ $(function() { ...@@ -2799,7 +2799,9 @@ $(function() {
HOME.cssInit = function() { HOME.cssInit = function() {
$('html').css({ $('html').css({
'overflow-y' : 'scroll' 'overflow-y' : 'scroll',
'-ms-touch-action' : 'auto',
'touch-action' : 'auto'
}); });
$('html,body').css({ $('html,body').css({
'height' : '100%', 'height' : '100%',
......
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