aboutsummaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2011-03-02 19:40:39 +0100
committerMatěj Cepl <mcepl@redhat.com>2011-03-02 19:44:57 +0100
commit334615671c59a217285cb1301c23c7109ac270af (patch)
tree8ac7337d19aa3b5cfedd73164e074465574ed29a /data
parent093d38ebf3716b2d9ab7397afbc4f479682e28fc (diff)
parentd24b3a694ba086c5e1ebae49dff99cf0a59b59f8 (diff)
downloadbugzilla-triage-334615671c59a217285cb1301c23c7109ac270af.tar.gz
Merge branch 'logging' into next
Diffstat (limited to 'data')
-rw-r--r--data/lib/logging-front.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/data/lib/logging-front.js b/data/lib/logging-front.js
index 4b0a3f9..b3a175d 100644
--- a/data/lib/logging-front.js
+++ b/data/lib/logging-front.js
@@ -14,7 +14,7 @@ function addLogRecord() {
rec.title = document.title;
var comment = window.prompt(
"Enter comments for this comment");
- if (comment) {
+ if (comment !== null) {
comment = comment.trim();
if (comment.length > 0) {
comment = comment.trim();
@@ -25,10 +25,7 @@ function addLogRecord() {
rec.key = dateStr + "+" +
urlStr + "+" + bugNo;
postMessage(new Message("AddLogRecord", rec));
- } else {
- console.log("Empty string!");
}
- console.log("addLogRecord : rec = " + rec.toSource());
return rec;
}
return null;