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/js/browser.js | |
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/js/browser.js')
-rw-r--r-- | src/app/js/browser.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/js/browser.js b/src/app/js/browser.js index fcb79a2..05bf01d 100644 --- a/src/app/js/browser.js +++ b/src/app/js/browser.js @@ -362,7 +362,7 @@ function BrowserEl(properties) { <div class="text"> <div class="title">${properties.title}</div> <div class="description">${properties.description}</div> - <button class="install" onclick=''>${installstr}</button> + <button class="install blue" onclick=''>${installstr}</button> <button class="info" onclick="Preview.set('${properties.url}')">${lang('gui.browser.view')}</button> <button class="visual">${properties.version}</button> <button class="visual">${lang("gui.browser.madeby")} ${properties.author}</button> |