aboutsummaryrefslogtreecommitdiff
path: root/radicale_infcloud/web/index.html
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-04-28 14:17:08 -0400
committerB. Stack <bgstack15@gmail.com>2022-04-28 14:17:08 -0400
commit362d567f71b9a7e096cecfbd41c79317ecbd1697 (patch)
tree1b2da51758c600f0e7c03c60becedd453e42c6aa /radicale_infcloud/web/index.html
parentUpdate for Radicale 3.1.6 (diff)
downloadradicaleinfcloud-362d567f71b9a7e096cecfbd41c79317ecbd1697.tar.gz
radicaleinfcloud-362d567f71b9a7e096cecfbd41c79317ecbd1697.tar.bz2
radicaleinfcloud-362d567f71b9a7e096cecfbd41c79317ecbd1697.zip
Add Download button, and stub import button
References include: https://javascript.info/file https://stackoverflow.com/questions/44555950/custom-download-name-with-javascript-or-jquery/44556846#44556846 https://stackoverflow.com/a/16137606
Diffstat (limited to 'radicale_infcloud/web/index.html')
-rw-r--r--radicale_infcloud/web/index.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/radicale_infcloud/web/index.html b/radicale_infcloud/web/index.html
index a62ccb8..6a2deb5 100644
--- a/radicale_infcloud/web/index.html
+++ b/radicale_infcloud/web/index.html
@@ -631,6 +631,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<input id="editOptionsButton" type="button" value="edit repeat" data-type="editOptions" />
<input id="resetButton" type="button" value="Reset" data-type="reset" />
<input id="closeButton" type="button" value="Cancel" data-type="cancel" />
+ <input id="downloadButton" type="button" value="Download" data-type="download"/>
+ <input id="uploadButton" type="button" value="Import" data-type="upload" ondrop="dropHandler(event)" ondragover="dragOverHandler(event);"/>
<input id="deleteButton" type="button" value="Delete" data-type="delete" onclick="updateEventFormDimensions(true);$('#CAEvent .saveLoader').show();deleteEvent();" />
</td>
</tr>
bgstack15