Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorpatrickhlauke <redux@splintered.co.uk>2018-10-15 22:53:51 +0300
committerXhmikosR <xhmikosr@gmail.com>2018-10-20 15:32:09 +0300
commit7b8f01d839aa2d2683bd5f90f79fe632d58bf9a4 (patch)
tree4cf33dc55fe054ffb1e3178fb394a257494a091b /js
parent735c374e9c366446afb30e20592ac1d796c7bb69 (diff)
Use correct touch-action values
- my fault, my original advice of using `touch-action: pan-x` is exactly the value we *don't* want to have the browser handle...
Diffstat (limited to 'js')
-rw-r--r--js/tests/unit/carousel.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tests/unit/carousel.js b/js/tests/unit/carousel.js
index 68c28aec5e..932b90f7dd 100644
--- a/js/tests/unit/carousel.js
+++ b/js/tests/unit/carousel.js
@@ -19,7 +19,7 @@ $(function () {
var stylesCarousel = [
'<style>',
- ' .carousel.pointer-event { -ms-touch-action: pan-x; touch-action: pan-x; }',
+ ' .carousel.pointer-event { -ms-touch-action: pan-y pinch-zoom; touch-action: pan-y pinch-zoom; }',
'</style>'
].join('')