Skip to content
Snippets Groups Projects
Commit c3f242a1 authored by DCoded's avatar DCoded
Browse files

Minor change

parent 2b5e1f35
No related branches found
No related tags found
1 merge request!7685Major Sex Interaction Expansion
...@@ -165,12 +165,12 @@ App.UI.SlaveInteract.useSlave = function(slave) { ...@@ -165,12 +165,12 @@ App.UI.SlaveInteract.useSlave = function(slave) {
let clothes = tempSlave.clothes; let clothes = tempSlave.clothes;
let introShown = false; let introShown = false;
const el = document.createElement('div'); const div = document.createElement('div');
el.id = 'use-slave-container'; div.id = 'use-slave-container';
el.append(main()); div.append(main());
return el; return div;
...@@ -744,7 +744,7 @@ App.UI.SlaveInteract.useSlave = function(slave) { ...@@ -744,7 +744,7 @@ App.UI.SlaveInteract.useSlave = function(slave) {
div.appendChild(main()); div.appendChild(main());
el.scrollTop = el.scrollHeight - el.clientHeight; div.scrollTop = div.scrollHeight - div.clientHeight;
}, null, '', e.tooltip))); }, null, '', e.tooltip)));
return App.UI.DOM.generateLinksStrip(links); return App.UI.DOM.generateLinksStrip(links);
......
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