Fix bug.
This commit is contained in:
parent
adb9d138e1
commit
bfa94e6090
|
@ -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
Loading…
Reference in New Issue