Add query param to auto select iG, minor style change

This commit is contained in:
Evan Barger
2020-05-23 22:36:23 -04:00
parent d5de2f58b5
commit 26f0b2afce
2 changed files with 5 additions and 1 deletions

View File

@@ -76,6 +76,10 @@ let app = new Vue({
this.processor.menu = this.menu;
this.processor.tickerText = this.tickerText;
this.processor.forceDMG = this.forceDMG;
if (window.location.search.substr(1).toLowerCase() == 'ig') {
this.cartType = 1;
}
},
computed: {
downloadEnabled: function() {

View File

@@ -201,5 +201,5 @@ noscript {
}
.cart-option.selected {
border: 1px solid black;
border: 1px solid #000079;
}