From 475f72d99a75e6c087189714f3ff7a7ccd13ef0f Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Wed, 3 Mar 2021 22:38:18 -0700 Subject: [PATCH] Move the discard hand button icon to the config --- web/src/config.js | 7 +++++++ web/src/store/index.js | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/web/src/config.js b/web/src/config.js index c460e35..87b7db1 100644 --- a/web/src/config.js +++ b/web/src/config.js @@ -56,6 +56,13 @@ export const guesser_name = `Medium`; */ export const eye_icon = `eye.svg`; +/** + * The icon that is used for the discard hand button that mediums see in the + * lower right hand corner of the screen. + */ +export const discard_hand_icon = `trash.svg`; + + /** * The URI that socket IO tries to connect to for websocket communication when * built for production serving. diff --git a/web/src/store/index.js b/web/src/store/index.js index b9ef675..590a946 100644 --- a/web/src/store/index.js +++ b/web/src/store/index.js @@ -20,7 +20,7 @@ export default new Vuex.Store({ eye_icon: conf.eye_icon, - discard_hand_icon: `trash.svg`, + discard_hand_icon: conf.discard_hand_icon, //===========================================================================// // DO NOT EDIT ANYTHING BELOW THIS COMMENT