diff options
author | Aaron Parecki <aaron@parecki.com> | 2015-05-11 22:07:20 +0200 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2015-05-11 22:07:20 +0200 |
commit | d6a2dddc5b96eb943faae8e64b5890159026b5e3 (patch) | |
tree | 31af3811e873597d60233c34b40f56d59fc2d7d6 /public | |
parent | aea6e8a02998b9e22343cbe5b8425eb53b4a4c4c (diff) |
apparently MediumEditor already has a placeholder text mechanism
Diffstat (limited to 'public')
-rw-r--r-- | public/editor/editor.js | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/public/editor/editor.js b/public/editor/editor.js index 08c09b0..0d72998 100644 --- a/public/editor/editor.js +++ b/public/editor/editor.js @@ -1,5 +1,6 @@ var editor = new MediumEditor('.editable', { buttons: ['bold', 'italic', 'anchor', 'header1', 'header2', 'quote', 'unorderedlist', 'pre'], + placeholder: 'Write something nice...', paste: { // This example includes the default options for paste, if nothing is passed this is what it used forcePlainText: false, @@ -10,7 +11,7 @@ var editor = new MediumEditor('.editable', { } }); -$(function () { +$(function() { $('.editable').mediumInsert({ editor: editor, beginning: true, @@ -26,9 +27,6 @@ $(function () { } } }); - $('.editable').focus(function(){ - $('.placeholder').removeClass('placeholder'); - }); $.post('/editor/test-login', {}, function(response) { if(response.logged_in) { @@ -91,7 +89,6 @@ $(function () { function reset_page() { $("#post-name").val(''); - $("#content").html('<p class="placeholder">Write something nice...</p>'); $("#draft-status").text("New"); return localforage.setItem('currentdraft', {}); } |