Disable modal on small screens
[plack-app-gruntmaster.git] / js / 10-modal.js
index 62cbb271c56b32f0f779d0ca4529814aeadeb9b8..9bf83ce71f634aad3bfb124fcba63962edb6a782 100644 (file)
@@ -13,6 +13,8 @@ function hide_modal () {
 }
 
 $(function() {
+       if(window.innerWidth < 768)
+               return;
        modal = $('.modal')[0];
        backdrop = $('.backdrop')[0];
        $(modal).on('transitionend', el => {
This page took 0.009869 seconds and 4 git commands to generate.