Skip to content

Commit

Permalink
Run format on a previously unformatted file
Browse files Browse the repository at this point in the history
  • Loading branch information
julienw committed Jan 23, 2024
1 parent 7ae836e commit 7c0931e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions resources/developer-mode.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ export function createUIForIterationCount() {
return label;
}


export function createUIForSuites() {
const control = document.createElement("nav");
const ol = document.createElement("ol");
Expand Down Expand Up @@ -186,14 +185,14 @@ export function createUIForSuites() {

function createUIForRun() {
let button = document.createElement("button");
button.textContent = `Start Test`;
button.textContent = "Start Test";
button.onclick = (event) => {
globalThis.benchmarkClient.start();
}
};
let buttons = document.createElement("div");
buttons.className = "button-bar";
buttons.appendChild(button);
return buttons
return buttons;
}

function updateURL() {
Expand Down

0 comments on commit 7c0931e

Please sign in to comment.