summaryrefslogtreecommitdiffstats
path: root/dashboard/src
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2019-06-26 09:11:45 -0400
committerParker Berberian <pberberian@iol.unh.edu>2019-06-26 09:11:45 -0400
commit2941c38938e06f205d9cbb2a1ef9f0145c5a4c66 (patch)
tree0f5b735d9870a7e4e8a49d838836480b8e25d28c /dashboard/src
parent5a18f9d65a88b2eff95b425f068f90ebd9347046 (diff)
Fixes a typo
Change-Id: Id0cfca0eda45035f89f2158cf7031d456e94ec83 Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
Diffstat (limited to 'dashboard/src')
-rw-r--r--dashboard/src/static/js/dashboard.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard/src/static/js/dashboard.js b/dashboard/src/static/js/dashboard.js
index bd43c77..84c3703 100644
--- a/dashboard/src/static/js/dashboard.js
+++ b/dashboard/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");