소스 검색

fixed mobile vids behaviour

Bachir Soussi Chiadmi 9 년 전
부모
커밋
b1228c60f0
1개의 변경된 파일8개의 추가작업 그리고 11개의 파일을 삭제
  1. 8 11
      sites/all/themes/gui/jee/js/jee.js

+ 8 - 11
sites/all/themes/gui/jee/js/jee.js

@@ -856,11 +856,6 @@ jQuery(document).ready(function($) {
           this.dimvideo.h = (this.dimvideo.w * parseInt($first_vid.attr("height")))/parseInt($first_vid.attr("width"));
         }
 
-
-        // add a mask on top of each iframe to avoid bad interaction with vimeo
-        if(!_is_mobile)
-          this.$vids.after('<div class="mask"></div>');
-
         // redim each iframe to fit
         this.$vids
           .each(this.redimVideo.bind(this))
@@ -873,12 +868,14 @@ jQuery(document).ready(function($) {
           marginLeft:marge
         });
 
-
-
-        // create the slider with peppermint
-        this.$slider = $('.field-items', this.$vids_container).Peppermint({
-          onSlideChange:this.onSlideChange.bind(this)
-        });
+        if(!_is_mobile){
+          // add a mask on top of each iframe to avoid bad interaction with vimeo
+          this.$vids.after('<div class="mask"></div>');
+          // create the slider with peppermint
+          this.$slider = $('.field-items', this.$vids_container).Peppermint({
+            onSlideChange:this.onSlideChange.bind(this)
+          });
+        }
       };
 
       Chapter.prototype.redimVideo = function(i,e){