From 0a24d760d49c4a367b286e2d8a5057ba581f78df Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Thu, 15 Oct 2020 10:16:16 -0400 Subject: [PATCH] simplify --- src/interaction/slaveInteract.js | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/interaction/slaveInteract.js b/src/interaction/slaveInteract.js index 512fc04de2a..bd06ceb72da 100644 --- a/src/interaction/slaveInteract.js +++ b/src/interaction/slaveInteract.js @@ -79,49 +79,41 @@ App.UI.SlaveInteract.mainPage = function(slave) { { title: "Description", id: "description", - onClick: () => jQuery("#content-description").empty().append(App.UI.SlaveInteract.description(slave)), get node() { return App.UI.SlaveInteract.description(slave); } }, { title: "Modify", id: "modify", - onClick: () => jQuery("#content-modify").empty().append(App.UI.SlaveInteract.modify(slave)), get node() { return App.UI.SlaveInteract.modify(slave); } }, { title: "Work", id: "work", - onClick: () => jQuery("#content-work").empty().append(App.UI.SlaveInteract.work(slave)), get node() { return App.UI.SlaveInteract.work(slave); } }, { title: "Appearance", id: "appearance", - onClick: () => jQuery("#content-appearance").empty().append(App.UI.SlaveInteract.wardrobe(slave)), get node() { return App.UI.SlaveInteract.wardrobe(slave); } }, { title: "Physical Regimen", id: "physical-regimen", - onClick: () => jQuery("#content-physical-regimen").empty().append(App.UI.SlaveInteract.physicalRegimen(slave)), get node() { return App.UI.SlaveInteract.physicalRegimen(slave); } }, { title: "Rules", id: "rules", - onClick: () => jQuery("#content-rules").empty().append(App.UI.SlaveInteract.rules(slave)), get node() { return App.UI.SlaveInteract.rules(slave); } }, { title: "Financial", id: "financial", - onClick: () => jQuery("#content-financial").empty().append(App.UI.SlaveInteract.financial(slave)), get node() { return App.UI.SlaveInteract.financial(slave); } }, { title: "Customize", id: "customize", - onClick: () => jQuery("#content-customize").empty().append(App.UI.SlaveInteract.custom(slave)), get node() { return App.UI.SlaveInteract.custom(slave); } }, { @@ -171,6 +163,7 @@ App.UI.SlaveInteract.mainPage = function(slave) { btn.innerHTML = item.title; btn.onclick = (event) => { App.UI.tabBar.openTab(event, item.id); + jQuery(`#content-${item.id}`).empty().append(item.node); if (item.hasOwnProperty("onClick")){ item.onClick(); } -- GitLab