diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-06-26 13:15:31 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-06-26 13:15:31 +0000 |
commit | fce290547954709c5b6184fddf31b370d23bbf0a (patch) | |
tree | ecebfc7ec9d5174703bfb2a97123ca30e87fca1b /dashboard | |
parent | 032376249e846f487323ee98ece5bf0844fbee28 (diff) | |
parent | 2941c38938e06f205d9cbb2a1ef9f0145c5a4c66 (diff) |
Diffstat (limited to 'dashboard')
-rw-r--r-- | dashboard/src/static/js/dashboard.js | 2 |
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"); |