diff --git a/app/assets/javascripts/bulletin/wpex.min.js b/app/assets/javascripts/bulletin/wpex.min.js index bbe274e..a40ae2b 100644 --- a/app/assets/javascripts/bulletin/wpex.min.js +++ b/app/assets/javascripts/bulletin/wpex.min.js @@ -258,8 +258,12 @@ } utils.extend(Item.prototype, EventEmitter.prototype); Item.prototype._create = function () { - this._transn = { ingProperties: {}, clean: {}, onEnd: {} }; - this.css({ position: 'absolute' }) + this._transn = { ingProperties: {}, clean: {}, onEnd: {} }; + var el = $(this.element); + if(el.hasClass("row")){ + el.css("width","100%"); + } + this.css({ position: 'absolute' }) }; Item.prototype.handleEvent = function (event) { var method = 'on' + event.type;