Fix bug.
This commit is contained in:
parent
eeeff9ad6b
commit
7ae01062b1
|
@ -258,8 +258,12 @@
|
||||||
}
|
}
|
||||||
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: {} };
|
||||||
this.css({ position: 'absolute' })
|
var el = $(this.element);
|
||||||
|
if(el.hasClass("row")){
|
||||||
|
el.css("width","100%");
|
||||||
|
}
|
||||||
|
this.css({ position: 'absolute' })
|
||||||
};
|
};
|
||||||
Item.prototype.handleEvent = function (event) {
|
Item.prototype.handleEvent = function (event) {
|
||||||
var method = 'on' + event.type;
|
var method = 'on' + event.type;
|
||||||
|
|
Loading…
Reference in New Issue