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 | 1cf54b373ff70d35aabf9a29fe0e9c50b1c4ce19 (patch) | |
tree | 77fdc59d9db456dda0ce5d0cb5aef61031830c08 /src/static/js/dashboard.js | |
parent | 76845bd93a481fb7f007341152142a6960f9add4 (diff) | |
parent | e4da05a6f3e42f9655e21c6c625b0071278309d7 (diff) |
Merge "Fixes a typo"
Diffstat (limited to 'src/static/js/dashboard.js')
-rw-r--r-- | src/static/js/dashboard.js | 2 |
1 files changed, 1 insertions, 1 deletions
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"); |