Minor: Message overflow fixed using .css

changed the meathod used to fix the message overflow to .css instead of .attr to prevent other styles from being overwritten
This commit is contained in:
Luke Ryley 2016-01-21 16:11:49 +13:00
parent 4cf470baa0
commit 8586b1d381

View File

@ -91,7 +91,7 @@
minInnerWidth: 620,
onadd: function() {
// Adding margin to prevent post options from overlaping message box
$('#Form_EditForm_error ').attr('style', 'margin-right: 56px');
$('#Form_EditForm_error ').css('margin-right', '56px');
this._super();
this.updateLayout();