editor: Hide comment header if there is nothing to show in it
[fnpeditor.git] / src / editor / modules / documentCanvas / canvas / comments / comments.js
index 3076f52..65c80f2 100644 (file)
@@ -142,8 +142,8 @@ var CommentView = function(commentNode) {
     }, 'date');
 
     this.dom = $(_.template(commentTemplate)({
-        author: author ||'?',
-        date: date || '?',
+        author: author || '',
+        date: date || '',
         content: this.node.object.getText() || '?'
     }));