From 26f0b2afce4ff28f7b7ec4c0b0781d2ff74e8c94 Mon Sep 17 00:00:00 2001 From: Evan Barger Date: Sat, 23 May 2020 22:36:23 -0400 Subject: [PATCH] Add query param to auto select iG, minor style change --- script/app.js | 4 ++++ style/style.css | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/script/app.js b/script/app.js index b3fd5be..a9674b3 100644 --- a/script/app.js +++ b/script/app.js @@ -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() { diff --git a/style/style.css b/style/style.css index 1a7fdda..cb82047 100644 --- a/style/style.css +++ b/style/style.css @@ -201,5 +201,5 @@ noscript { } .cart-option.selected { - border: 1px solid black; + border: 1px solid #000079; }