-
|
Like the subject says, I can dig around in the code, but if someone already did this, it would help a lot if they could tell me to go to this or that file and change line X to point to the plugin instead. |
Beta Was this translation helpful? Give feedback.
Answered by
ranirahn
Apr 21, 2026
Replies: 1 comment
-
|
in index.html I would change this <a id="mnu_remove" class="nav-link flex-grow-1" href="#" onclick="theWebUI.removeTorrent(); return(false);" onfocus="this.blur()" uilangtitle="mnu_remove">
<div id="remove" class="nav-icon"></div>
</a>to this <a id="mnu_remove" class="nav-link flex-grow-1" href="#" onclick="(theWebUI.removeWithData || theWebUI.removeTorrent).call(theWebUI); return false;" onfocus="this.blur()" uilangtitle="mnu_remove">
<div id="remove" class="nav-icon"></div>
</a>rows 96-98. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
FaceCrap
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
in index.html I would change this
to this
rows 96-98.
Leave the other funktsion in place incase the erasedata plugin is disabled or missing or what ever. I would not actually do this but this is how you could do this.