diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2024-12-12 17:06:56 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2024-12-12 17:06:56 +0000 |
commit | 1ffc9712856cea1c554a68c9cd637d5a669087ad (patch) | |
tree | 37b4e4631ed9f35a0c59e9d04225950bf33a28d7 | |
parent | c401af7bfce72e16531cc7f7f806df11d373e4ae (diff) | |
download | troggle-1ffc9712856cea1c554a68c9cd637d5a669087ad.tar.gz troggle-1ffc9712856cea1c554a68c9cd637d5a669087ad.tar.bz2 troggle-1ffc9712856cea1c554a68c9cd637d5a669087ad.zip |
move buttons to top in JavaScript
-rw-r--r-- | templates/html_editor_pop_ups.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/html_editor_pop_ups.html b/templates/html_editor_pop_ups.html index dfdc66d..2d7129f 100644 --- a/templates/html_editor_pop_ups.html +++ b/templates/html_editor_pop_ups.html @@ -2,10 +2,10 @@ <div class="add-image-popup popup-overlay"> <div class="add-image-popup popup-content"> - <h2>Select Image</h2> - <p id="image_popup_content"> Loading ...</p> + <h2>Select Image (or upload one)</h2> <button onclick="new_image_popup()">Upload Image</button> <button class="close" onclick="$('.add-image-popup').removeClass('active');">Close</button> + <p id="image_popup_content"> Loading ...</p> </div> </div> |