From e4da05a6f3e42f9655e21c6c625b0071278309d7 Mon Sep 17 00:00:00 2001 From: Parker Berberian Date: Wed, 26 Jun 2019 09:11:45 -0400 Subject: Fixes a typo Change-Id: Id0cfca0eda45035f89f2158cf7031d456e94ec83 Signed-off-by: Parker Berberian --- src/static/js/dashboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/static/js/dashboard.js') diff --git a/src/static/js/dashboard.js b/src/static/js/dashboard.js index bd43c77..84c3703 100644 --- a/src/static/js/dashboard.js +++ b/src/static/js/dashboard.js @@ -482,7 +482,7 @@ class NetworkStep { yes_button.appendChild(document.createTextNode("Okay")); const cancel_button = document.createElement("button"); - cancel_button.onclick = function() {thid.closeWindow();}.bind(this); + cancel_button.onclick = function() {this.closeWindow();}.bind(this); cancel_button.appendChild(document.createTextNode("Cancel")); const error_div = document.createElement("div"); -- cgit 1.2.3-korg