This commit is contained in:
BoHung Chiu 2022-11-01 13:20:01 +08:00
parent 162b254f40
commit 30ac79c890
2 changed files with 7 additions and 2 deletions

View File

@ -6706,7 +6706,12 @@ Item.prototype._create = function() {
clean: {}, clean: {},
onEnd: {} onEnd: {}
}; };
var el = $(this.element);
if(el.hasClass("row")){
el.css("width","100%");
}else if(el.filter("[class*='col-md']").length == 0){
el.css("width","100%");
}
this.css({ this.css({
position: 'absolute' position: 'absolute'
}); });

File diff suppressed because one or more lines are too long