Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/screen/newmenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class NewMenu extends Screen {
super.initialize(props);

this.backButton.click(this.onBack);
this.goButton.click(function () {
this.goButton.click(() => {
if (!this.isLoading) {
this.waitingForResponse(true);
const name = $("#newinname").val();
Expand Down
2 changes: 1 addition & 1 deletion server/routes/main.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import webpackAssets from "../../webpack-assets.json";
import webpackAssets from "../../webpack-assets.json" assert { type: "json" };
import WordPacks from "../app/words.js";

const { getAllPackNames } = WordPacks;
Expand Down
4 changes: 2 additions & 2 deletions server/views/index.pug
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ block content
div#mainmenu.d-none
include announcements.pug
.btn-toolbar.mt-3
a.btn.btn-default.btn-lg.mr-2(href="https://rocketcrab.com/join",type='button') Join Party
a.btn.btn-default.btn-lg(href="https://rocketcrab.com/transfer/drawphone",type='button') Start Party
button.btn.btn-default.btn-lg.mr-2(id="joinbtn", type='button') Join Party
button.btn.btn-default.btn-lg(id="newbtn", type='button') Start Party
.mt-3.mb-3
|Powered by
img.rocketsvg.ml-1(src='https://rocketcrab.com/rocket.svg' alt='' width='16')
Expand Down