Browse Source

replace photo section with camera icon

pull/82/head
Aaron Parecki 7 years ago
parent
commit
2c8387b1e0
No known key found for this signature in database GPG Key ID: 276C2817346D6056
1 changed files with 11 additions and 4 deletions
  1. +11
    -4
      views/new-post.php

+ 11
- 4
views/new-post.php View File

@ -41,7 +41,9 @@
<input type="text" id="note_slug" value="" class="form-control"> <input type="text" id="note_slug" value="" class="form-control">
</div> </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> <label for="note_photo">Photo</label>
<input type="file" name="note_photo" id="note_photo" accept="image/*"> <input type="file" name="note_photo" id="note_photo" accept="image/*">
<a href="javascript:switchToManualPhotoURL();" id="note_manual_photo">enter photo url</a> <a href="javascript:switchToManualPhotoURL();" id="note_manual_photo">enter photo url</a>
@ -55,7 +57,7 @@
</div> </div>
</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> <label for="note_syndicate-to">Syndicate <a href="javascript:reload_syndications()">(refresh list)</a></label>
<div id="syndication-container"> <div id="syndication-container">
<?php <?php
@ -245,8 +247,13 @@ function expandReplySection() {
function activateTokenField() { function activateTokenField() {
$("#note_category").tokenfield({ $("#note_category").tokenfield({
createTokensOnBlur: true, createTokensOnBlur: true,
beautify: true
});
beautify: true,
});
}
function expandPhotoSection() {
$("#photo-section").removeClass("hidden");
$("#expand-photo-section").addClass("hidden");
} }
$(function(){ $(function(){

Loading…
Cancel
Save