Browse Source

Use console.log instead of breakpoint

tags/v1.2.0-rc1
Andrew Patton 11 years ago
parent
commit
71cefc95ab
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      public/js/app.js

+ 1
- 1
public/js/app.js View File

@@ -675,7 +675,7 @@ function initIssue() {
var xhr = new XMLHttpRequest();

xhr.addEventListener("error", function() {
debugger;
console.log("Issue submit request failed. xhr.status: " + xhr.status);
});

xhr.addEventListener("load", function() {


Loading…
Cancel
Save