This commit is contained in:
BoHung Chiu 2021-04-27 14:55:49 +08:00
parent b7353a5acb
commit d202d17fe7
1 changed files with 3 additions and 1 deletions

View File

@ -262,6 +262,8 @@
var el = $(this.element); var el = $(this.element);
if(el.hasClass("row")){ if(el.hasClass("row")){
el.css("width","100%"); el.css("width","100%");
}else if(el.filter("[class*='col-md']").length == 0){
el.css("width","100%");
} }
this.css({ position: 'absolute' }) this.css({ position: 'absolute' })
}; };
@ -2440,7 +2442,7 @@ var wpex = {};
filter: activeItems filter: activeItems
}) })
$grid.on( 'layoutComplete', function(){ $grid.on( 'layoutComplete', function(){
self.equalHeights(); //Something to call after animation
}); });
}) })
}) })