Buttons positioning 2

The last 2 remainings from original structure
This commit is contained in:
Andrea Rendine
2016-02-16 02:58:51 +01:00
parent bf7472ba37
commit aa62b7f9be
+2 -2
View File
@@ -531,9 +531,9 @@ var Events = {
Button.cooldown(leaveBtn.appendTo(exitBtns)); Button.cooldown(leaveBtn.appendTo(exitBtns));
var healBtns = $('<div>').appendTo(btns).attr('id','healButtons'); var healBtns = $('<div>').appendTo(btns).attr('id','healButtons');
Events.createEatMeatButton(0).appendTo(btns); Events.createEatMeatButton(0).appendTo(healBtns);
if((Path.outfit['medicine'] || 0) !== 0) { if((Path.outfit['medicine'] || 0) !== 0) {
Events.createUseMedsButton(0).appendTo(btns); Events.createUseMedsButton(0).appendTo(healBtns);
} }
$('<div>').addClass('clear').appendTo(healBtns); $('<div>').addClass('clear').appendTo(healBtns);
} }