diff options
author | Andrew Patton <andrew@acusti.ca> | 2014-07-25 17:50:25 -0400 |
---|---|---|
committer | Andrew Patton <andrew@acusti.ca> | 2014-07-25 17:50:25 -0400 |
commit | 71cefc95ab60c8628af575df1e54d83bde46f73c (patch) | |
tree | f02e142031f7eedc1fd7fca76a755ec6fea5fe7d /public | |
parent | 957361d755259c89c00d6066d5a309ec876caedb (diff) | |
download | gitea-71cefc95ab60c8628af575df1e54d83bde46f73c.tar.gz gitea-71cefc95ab60c8628af575df1e54d83bde46f73c.zip |
Use console.log instead of breakpoint
Diffstat (limited to 'public')
-rw-r--r-- | public/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/app.js b/public/js/app.js index d34e7c8059..031c58245a 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -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() { |