diff options
author | 0neGal <mail@0negal.com> | 2023-01-30 23:22:41 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2023-01-30 23:22:41 +0100 |
commit | 84cc46018664cee9d89d71ea75ba687a9171ab28 (patch) | |
tree | 43e71f3b8a1535aa1e6440dd0f7df001efb09749 /src/app/index.html | |
parent | 67778e1ecab4747cf886e8ffcb6a11f96ccc279c (diff) | |
download | Viper-84cc46018664cee9d89d71ea75ba687a9171ab28.tar.gz Viper-84cc46018664cee9d89d71ea75ba687a9171ab28.zip |
added: toggles for toggling mods in modlist
The new modlist now uses the same toggles found in the settings popup,
only here they're used to disable/enable mods. On top of this I also
fixed the "Toggle All" button not working. Forgot to change some stuff,
breaking it... oops...
Diffstat (limited to 'src/app/index.html')
-rw-r--r-- | src/app/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/index.html b/src/app/index.html index d9e8e14..0e96486 100644 --- a/src/app/index.html +++ b/src/app/index.html @@ -231,7 +231,7 @@ <div class="text" id="modcount">%%gui.mods%%</div> <div class="buttons modbtns"> <button id="removeall" class="red2" onclick="mods.remove('allmods')">%%gui.mods.removeall%%</button> - <button id="toggleall" class="orange2" onclick="selected(true).toggle(true)">%%gui.mods.toggleall%%</button> + <button id="toggleall" class="orange2" onclick="mods.toggle('allmods')">%%gui.mods.toggleall%%</button> <button id="installmod" class="blue" onclick="installmod()">%%gui.mods.install%%</button> <button id="findmod" class="blue2" onclick="Browser.toggle(true)">%%gui.mods.find%%</button> </div> |