Skip to content

Commit

Permalink
Merge pull request #1077 from GeneaLabs/feature/fix-arrangement-of-co…
Browse files Browse the repository at this point in the history
…mponents

Fix Arrangement of Build Result Components
  • Loading branch information
Dan Cryer committed Oct 13, 2015
2 parents 3aeef06 + 8845fe6 commit 6aea2bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions public/assets/js/build.js
Expand Up @@ -108,8 +108,8 @@ var Build = Class.extend({
output = $('<div class="box-body"></div>').append(output);
}

var container = $('<div></div>').addClass('ui-plugin ' + plugin.css);
var content = $('<div></div>').attr('id', plugin.id).append(output);
var container = $('<div></div>').addClass('ui-plugin ' + plugin.css).attr('id', plugin.id);
var content = $('<div></div>').append(output);
content.addClass('box box-default');

if (plugin.title) {
Expand Down Expand Up @@ -145,4 +145,4 @@ var Build = Class.extend({

}
})
});
});

0 comments on commit 6aea2bd

Please sign in to comment.