Commit 7cd43c08 by Masaru Abe

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

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