aboutsummaryrefslogtreecommitdiff
path: root/client/src/Client.elm
diff options
context:
space:
mode:
authorJasper Van der Jeugt2020-08-13 19:19:22 +0200
committerJasper Van der Jeugt2020-08-13 19:19:22 +0200
commit8d5c0405565ad4afd976efd1262b3224efd6ee2f (patch)
tree8d24ecb97212d54943d104ed95f1fda4dea7c1fd /client/src/Client.elm
parenta39fe7ff759a552c64a060f0d98a0d4e8a577b01 (diff)
cafp -> uplcg
Diffstat (limited to '')
-rw-r--r--client/src/Client.elm8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/Client.elm b/client/src/Client.elm
index 840e9b6..6e987e7 100644
--- a/client/src/Client.elm
+++ b/client/src/Client.elm
@@ -74,14 +74,14 @@ viewPlayers players = Html.table [] <|
view : Model -> Browser.Document Msg
view model = case model of
Error str ->
- { title = "CaFP: Error"
+ { title = "Untitled PL Card Game: Error"
, body =
[ Html.h1 [] [Html.text "Error"]
, Html.p [] [Html.text str]
]
}
Connecting roomId ->
- { title = "CaFP: Connecting"
+ { title = "Untitled PL Card Game: Connecting"
, body =
[ Html.h1 []
[ Html.text <|
@@ -91,8 +91,8 @@ view model = case model of
}
Game game ->
{ title = case game.room of
- Nothing -> "CaFP"
- Just room -> "CaFP | " ++ room
+ Nothing -> "Untitled PL Card Game"
+ Just room -> room ++ " | Untitled PL Card Game"
, body =
[ Html.div [Html.Attributes.class "main"] <|
[ Html.div [Html.Attributes.class "table"]