Skip to content
Snippets Groups Projects
Commit b8cd61c6 authored by lowercasedonkey's avatar lowercasedonkey
Browse files

cleanup

parent 2ee618b0
No related branches found
No related tags found
1 merge request!8830Js cheat
/** @param {App.Entity.SlaveState} slave */ /** @param {App.Entity.SlaveState} slave */
App.UI.SlaveInteract.cheatEditSlave = function(slave) { App.UI.SlaveInteract.cheatEditSlave = function(slave) {
const el = new DocumentFragment(); const el = new DocumentFragment();
const r = [];
const {His} = getPronouns(slave);
const tempSlave = clone(slave); const tempSlave = clone(slave);
App.UI.tabBar.handlePreSelectedTab(V.tabChoice.RemoteSurgery); App.UI.tabBar.handlePreSelectedTab(V.tabChoice.RemoteSurgery);
App.UI.DOM.appendNewElement("h1", el, `Cheat edit ${slave.slaveName}`); App.UI.DOM.appendNewElement("h1", el, `Cheat edit ${slave.slaveName}`);
App.UI.DOM.appendNewElement("div", el, App.UI.DOM.link( App.UI.DOM.appendNewElement("div", el, App.UI.DOM.link(
...@@ -18,7 +15,7 @@ App.UI.SlaveInteract.cheatEditSlave = function(slave) { ...@@ -18,7 +15,7 @@ App.UI.SlaveInteract.cheatEditSlave = function(slave) {
"Cheat Edit JS Apply" "Cheat Edit JS Apply"
)); ));
el.append(App.Desc.longSlave(slave)); el.append(App.Desc.longSlave(tempSlave));
// TODO: move me // TODO: move me
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment