summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Parecki <aaron@parecki.com>2017-02-12 19:48:36 -0800
committerAaron Parecki <aaron@parecki.com>2017-02-12 19:48:36 -0800
commit2c8387b1e08bff38895c2ce8a840a13a1fed1932 (patch)
tree0d9e40b1117ebea16ff26e229bb4b388ecf682b6
parenteab1a65f63f227bae126a554e3bf93aa05c70695 (diff)
replace photo section with camera icon
-rw-r--r--views/new-post.php15
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(){