Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. function owl_scroll() { ?>
  2. <script>
  3. jQuery( function( $ ) {
  4. $( document ).ready( function() {
  5. $('.owl-carousel').bind('touchstart', function(e) {
  6. if ($(e.target).closest('.owl-carousel').length == 1) {
  7. blockMenuHeaderScroll = true;
  8. }
  9. });
  10. $('.owl-carousel').bind('touchend', function() {
  11. blockMenuHeaderScroll = false;
  12. });
  13. $('.owl-carousel').bind('touchmove', function(e) {
  14. if (blockMenuHeaderScroll) {
  15. e.preventDefault();
  16. }
  17. });
  18. });
  19. });
  20. </script>
  21. <?php }
  22. add_action( 'wp_head', 'owl_scroll', 13 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement