diff options
author | friendica <info@friendica.com> | 2012-08-06 23:10:37 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-08-06 23:10:37 -0700 |
commit | 5f619d3254052cb48fc47bc36e7aaabf9d33ce50 (patch) | |
tree | 4d0782455689d34265947f30344e4026f2c7a03c /view/theme/dispy/jot.tpl | |
parent | c673c70c25143f18b2ef6aef9ee6633d0eac46ae (diff) | |
download | volse-hubzilla-5f619d3254052cb48fc47bc36e7aaabf9d33ce50.tar.gz volse-hubzilla-5f619d3254052cb48fc47bc36e7aaabf9d33ce50.tar.bz2 volse-hubzilla-5f619d3254052cb48fc47bc36e7aaabf9d33ce50.zip |
the dynamic "show more" sort of works - but with a nagging delay. But I need to move on to bigger things. We'll leave it for now.
Diffstat (limited to 'view/theme/dispy/jot.tpl')
-rw-r--r-- | view/theme/dispy/jot.tpl | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/view/theme/dispy/jot.tpl b/view/theme/dispy/jot.tpl index 563d58ce4..12969dd03 100644 --- a/view/theme/dispy/jot.tpl +++ b/view/theme/dispy/jot.tpl @@ -1,8 +1,6 @@ <form id="profile-jot-form" action="$action" method="post"> <div id="jot"> <div id="profile-jot-desc" class="jothidden"> </div> - <input name="title" id="jot-title" type="text" placeholder="$placeholdertitle" value="$title" class="jothidden" style="display:none" /> - <div id="character-counter" class="grey jothidden"></div> <input type="hidden" name="type" value="$ptyp" /> <input type="hidden" name="profile_uid" value="$profile_uid" /> @@ -11,11 +9,13 @@ <input type="hidden" name="coord" id="jot-coord" value="" /> <input type="hidden" name="post_id" value="$post_id" /> <input type="hidden" name="preview" id="jot-preview" value="0" /> + <div id="jot-title-wrap"><input name="title" id="jot-title" type="text" placeholder="$placeholdertitle" value="$title" class="jothidden" style="display:none" /></div> + <div id="character-counter" class="grey jothidden"></div> <div id="jot-category-wrap"><input name="category" id="jot-category" type="text" placeholder="$placeholdercategory" value="$category" class="jothidden" style="display:none" /></div> <textarea rows="5" cols="64" class="profile-jot-text" id="profile-jot-text" name="body">{{ if $content }}$content{{ else }}$share{{ endif }} </textarea> - +<div id="profile-jot-submit-wrapper" class="jothidden"> <div id="jot-tools" class="jothidden" style="display:none"> <div id="profile-jot-submit-wrapper" class="jothidden"> @@ -68,6 +68,9 @@ $jotnets </div> </div> +</div> +<div id="profile-jot-end"></div> </form> +</div> {{ if $content }}<script>initEditor();</script>{{ endif }} |