Merge "Fixes a typo" master
authorParker Berberian <pberberian@iol.unh.edu>
Wed, 26 Jun 2019 13:15:31 +0000 (13:15 +0000)
committerGerrit Code Review <gerrit@opnfv.org>
Wed, 26 Jun 2019 13:15:31 +0000 (13:15 +0000)
dashboard/src/static/js/dashboard.js

index bd43c77..84c3703 100644 (file)
@@ -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");