Fix bug.
This commit is contained in:
parent
eeeff9ad6b
commit
7ae01062b1
|
@ -259,6 +259,10 @@
|
||||||
utils.extend(Item.prototype, EventEmitter.prototype);
|
utils.extend(Item.prototype, EventEmitter.prototype);
|
||||||
Item.prototype._create = function () {
|
Item.prototype._create = function () {
|
||||||
this._transn = { ingProperties: {}, clean: {}, onEnd: {} };
|
this._transn = { ingProperties: {}, clean: {}, onEnd: {} };
|
||||||
|
var el = $(this.element);
|
||||||
|
if(el.hasClass("row")){
|
||||||
|
el.css("width","100%");
|
||||||
|
}
|
||||||
this.css({ position: 'absolute' })
|
this.css({ position: 'absolute' })
|
||||||
};
|
};
|
||||||
Item.prototype.handleEvent = function (event) {
|
Item.prototype.handleEvent = function (event) {
|
||||||
|
|
Loading…
Reference in New Issue