diff options
author | Aaron Parecki <aaron@parecki.com> | 2015-05-10 14:14:35 +0200 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2015-05-10 14:14:35 +0200 |
commit | b92daf96f5ae40abaadc3f41e448fcc75824334b (patch) | |
tree | 356b80d4d63f2dbe01afbefee65da986b2c1005a /public/editor/editor.js | |
parent | 2792d5150d81c7e9e7a8e645e1b07f0ad0dc5e8a (diff) |
disable manifest during development, set placeholder text
Diffstat (limited to 'public/editor/editor.js')
-rw-r--r-- | public/editor/editor.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/public/editor/editor.js b/public/editor/editor.js index bdf0580..2c4972f 100644 --- a/public/editor/editor.js +++ b/public/editor/editor.js @@ -26,4 +26,7 @@ $(function () { } } }); + $('.editable').focus(function(){ + $('.placeholder').removeClass('placeholder'); + }); }); |