From 7d1a7a47d9ddea1937f727c1e41a95ec202337ed Mon Sep 17 00:00:00 2001 From: Emi Simpson Date: Tue, 4 Jul 2023 22:42:08 -0400 Subject: [PATCH] Temporarily disable the <3 sticker --- src/Main.elm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Main.elm b/src/Main.elm index 774952f..357e257 100644 --- a/src/Main.elm +++ b/src/Main.elm @@ -165,11 +165,11 @@ viewTile : Bool -> Int -> Int -> Tile -> Html Msg viewTile isTileHeld columnIndex tileIndex tile = div [ class "tile" - , on "click" <| ( - D.map2 (Click columnIndex tileIndex) - (D.field "layerX" D.int) - (D.field "layerY" D.int) - ) + -- , on "click" <| ( + -- D.map2 (Click columnIndex tileIndex) + -- (D.field "layerX" D.int) + -- (D.field "layerY" D.int) + -- ) , attributeIf isTileHeld (onMouseEnter <| HeldOverNewTile columnIndex tileIndex) ] [ viewGrip columnIndex tileIndex tile