diff options
author | RedMatrix <info@friendica.com> | 2014-12-22 09:44:23 +1100 |
---|---|---|
committer | RedMatrix <info@friendica.com> | 2014-12-22 09:44:23 +1100 |
commit | d00d60d08d9b1d3114b9035faf64e59b589a89c1 (patch) | |
tree | 0a849a9130778e99e6acf0089734e65acaadbed6 /view/tpl/jot.tpl | |
parent | 143cb8ed3b9d454d543838a744a6af2c3778a0e5 (diff) | |
parent | b8081624c5160cfda904c2a6fe2e594e8a5b779a (diff) | |
download | volse-hubzilla-d00d60d08d9b1d3114b9035faf64e59b589a89c1.tar.gz volse-hubzilla-d00d60d08d9b1d3114b9035faf64e59b589a89c1.tar.bz2 volse-hubzilla-d00d60d08d9b1d3114b9035faf64e59b589a89c1.zip |
Merge pull request #754 from pafcu/categoryinput
Fancy categories input in editor
Diffstat (limited to 'view/tpl/jot.tpl')
-rwxr-xr-x | view/tpl/jot.tpl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index 34acce879..00ef77d93 100755 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -19,17 +19,17 @@ <span class="channel-id-select-desc">{{$id_seltext}}</span> {{$id_select}} </div> {{/if}} - <div id="jot-title-wrap"> - <input name="title" id="jot-title" type="text" placeholder="{{$placeholdertitle}}" value="{{$title}}" class="jothidden" style="display:none"> + <div id="jot-title-wrap" class="jothidden" style="display:none"> + <input name="title" id="jot-title" type="text" placeholder="{{$placeholdertitle}}" value="{{$title}}"> </div> {{if $catsenabled}} - <div id="jot-category-wrap"> - <input name="category" id="jot-category" type="text" placeholder="{{$placeholdercategory}}" value="{{$category}}" class="jothidden" style="display:none" /> + <div id="jot-category-wrap" class="jothidden" style="display:none"> + <input name="category" id="jot-category" type="text" placeholder="{{$placeholdercategory}}" value="{{$category}}" data-role="tagsinput"/> </div> {{/if}} {{if $webpage}} - <div id="jot-pagetitle-wrap"> - <input name="pagetitle" id="jot-pagetitle" type="text" placeholder="{{$placeholdpagetitle}}" value="{{$pagetitle}}" class="jothidden" style="display:none" /> + <div id="jot-pagetitle-wrap" class="jothidden" style="display:none"> + <input name="pagetitle" id="jot-pagetitle" type="text" placeholder="{{$placeholdpagetitle}}" value="{{$pagetitle}}" /> </div> {{/if}} <div id="jot-text-wrap"> |