diff options
Diffstat (limited to 'view/theme/dispy')
-rw-r--r-- | view/theme/dispy/jot-header.tpl | 19 | ||||
-rw-r--r-- | view/theme/dispy/jot.tpl | 1 | ||||
-rw-r--r-- | view/theme/dispy/style.css | 3 |
3 files changed, 23 insertions, 0 deletions
diff --git a/view/theme/dispy/jot-header.tpl b/view/theme/dispy/jot-header.tpl index a3464f3f7..a30b41825 100644 --- a/view/theme/dispy/jot-header.tpl +++ b/view/theme/dispy/jot-header.tpl @@ -102,9 +102,28 @@ function initEditor(cb) { initEditor(); }); + $("#jot-title").mouseout(function() { + $("#jot-title").hide(); + var ttl = $("#jot-title").val(); + $('#jot-title-display').html(ttl); + if(ttl.length) { + $("#jot-title-display").show(); + } + else { + $("#jot-title-desc").show(); + } + }); + + $("#jot-title-display").click(function() { + $("#jot-title-display").hide(); + $("#jot-title").show(); + $("#jot-title").focus(); + }); + $("#jot-title-desc").click(function() { $("#jot-title-desc").hide(); $("#jot-title").show(); + $("#jot-title").focus(); }); var uploader = new window.AjaxUpload( diff --git a/view/theme/dispy/jot.tpl b/view/theme/dispy/jot.tpl index b340b532b..57f320d4c 100644 --- a/view/theme/dispy/jot.tpl +++ b/view/theme/dispy/jot.tpl @@ -17,6 +17,7 @@ <input type="hidden" name="post_id" value="$post_id" /> <div id="jot-title-wrapper"> <span id="jot-title-desc" style="display: none;">$addtitle</span> + <span id="jot-title-display" style="display: none;"></span> <input type="text" name="title" id="jot-title" value="" style="display: none;" /> </div> diff --git a/view/theme/dispy/style.css b/view/theme/dispy/style.css index 59425a05a..08582f1d5 100644 --- a/view/theme/dispy/style.css +++ b/view/theme/dispy/style.css @@ -354,6 +354,9 @@ aside #viewcontacts { text-align: right;} border: 1px solid #cccccc; width: 530px; } +#jot-title-display { + font-weight: bold; +} /** |