aboutsummaryrefslogtreecommitdiff
path: root/radicale_infcloud/web/index.html
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-08-12 14:53:46 +0000
committerB. Stack <bgstack15@gmail.com>2022-08-12 14:53:46 +0000
commitfdd641301eb1e030c56e86575a7b0f607e03d53c (patch)
tree70dcca6002aff90633df7b13e2a0b5789096ba1e /radicale_infcloud/web/index.html
parentadd my preferred contact display settings (diff)
parentAdd upload functionality (diff)
downloadradicaleinfcloud-fdd641301eb1e030c56e86575a7b0f607e03d53c.tar.gz
radicaleinfcloud-fdd641301eb1e030c56e86575a7b0f607e03d53c.tar.bz2
radicaleinfcloud-fdd641301eb1e030c56e86575a7b0f607e03d53c.zip
Merge branch 'add-upload' into 'stackrpms'
Add upload functionality See merge request bgstack15/RadicaleInfCloud!1
Diffstat (limited to 'radicale_infcloud/web/index.html')
-rw-r--r--radicale_infcloud/web/index.html1
1 files changed, 1 insertions, 0 deletions
diff --git a/radicale_infcloud/web/index.html b/radicale_infcloud/web/index.html
index 39b8583..a8b95e4 100644
--- a/radicale_infcloud/web/index.html
+++ b/radicale_infcloud/web/index.html
@@ -629,6 +629,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<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