From 1f8694b1fe25951b3cea1b8dc37e2e57f8aa9c5a Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Wed, 4 Feb 2009 23:43:54 -0800 Subject: [PATCH] Moved grabber creation to existing note controls creation function and added "....." placeholder text to make IE display it. --- static/js/Editor.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/js/Editor.js b/static/js/Editor.js index 02b6b45..53f5e59 100644 --- a/static/js/Editor.js +++ b/static/js/Editor.js @@ -121,7 +121,6 @@ Editor.prototype.create_div = function ( position_after ) { this.create_note_controls(); this.connect_note_controls(); - this.grabber = createDOM( "td", { "id": "note_grabber_" + this.id, "class": "note_grabber" } ); this.holder = createDOM( "table", { "id": "note_holder_" + this.id, "class": "note_holder" }, createDOM( "tr", {}, createDOM( "td", {}, this.note_controls ) @@ -147,6 +146,8 @@ Editor.prototype.create_div = function ( position_after ) { 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" }, "....." ); + this.delete_button = createDOM( "input", { "type": "button", "class": "note_button",