Browse Source

Use console.log instead of breakpoint

pull/332/head
Andrew Patton 11 years ago
parent
commit
71cefc95ab
  1. 2
      public/js/app.js

2
public/js/app.js

@ -675,7 +675,7 @@ function initIssue() {
var xhr = new XMLHttpRequest(); var xhr = new XMLHttpRequest();
xhr.addEventListener("error", function() { xhr.addEventListener("error", function() {
debugger; console.log("Issue submit request failed. xhr.status: " + xhr.status);
}); });
xhr.addEventListener("load", function() { xhr.addEventListener("load", function() {

Loading…
Cancel
Save