From 5446eeec5dedceb41b30ca609c782677f8322354 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Tue, 10 Feb 2009 13:53:36 -0800 Subject: [PATCH] No longer showing a grabber on a new note created within a forum. --- static/js/Editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/Editor.js b/static/js/Editor.js index 65beb93..374d628 100644 --- a/static/js/Editor.js +++ b/static/js/Editor.js @@ -150,7 +150,7 @@ Editor.prototype.create_note_controls = function () { var iframe_id = "note_" + this.id; if ( this.read_write ) { this.grabber = createDOM( "td", { "id": "note_grabber_" + this.id, "class": "note_grabber" }, "....." ); - if ( !this.read_write ) + if ( !this.read_write || this.own_notes_only ) addElementClass( this.grabber, "invisible" ); this.delete_button = createDOM( "input", {