diff options
Diffstat (limited to 'views/new-post.php')
-rw-r--r-- | views/new-post.php | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/views/new-post.php b/views/new-post.php index 57a2ffa..e14c38f 100644 --- a/views/new-post.php +++ b/views/new-post.php @@ -41,7 +41,9 @@ <input type="text" id="note_slug" value="" class="form-control"> </div> - <div class="form-group"> + <a href="javascript:expandPhotoSection();" id="expand-photo-section"><i class="glyphicon glyphicon-camera" style="color: #aaa; font-size: 36px;"></i></a> + + <div class="form-group hidden" id="photo-section"> <label for="note_photo">Photo</label> <input type="file" name="note_photo" id="note_photo" accept="image/*"> <a href="javascript:switchToManualPhotoURL();" id="note_manual_photo">enter photo url</a> @@ -55,7 +57,7 @@ </div> </div> - <div class="form-group"> + <div class="form-group" style="margin-top: 1em;"> <label for="note_syndicate-to">Syndicate <a href="javascript:reload_syndications()">(refresh list)</a></label> <div id="syndication-container"> <?php @@ -245,8 +247,13 @@ function expandReplySection() { function activateTokenField() { $("#note_category").tokenfield({ createTokensOnBlur: true, - beautify: true - }); + beautify: true, + }); +} + +function expandPhotoSection() { + $("#photo-section").removeClass("hidden"); + $("#expand-photo-section").addClass("hidden"); } $(function(){ |