mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-06 06:37:36 +03:00
Hide download button for Webcal collections
This commit is contained in:
parent
bf824838d8
commit
6f5ee56c2d
1 changed files with 3 additions and 0 deletions
|
@ -742,6 +742,9 @@ function CollectionsScene(user, password, collection, onerror) {
|
||||||
let href = SERVER + collection.href;
|
let href = SERVER + collection.href;
|
||||||
url_form.value = href;
|
url_form.value = href;
|
||||||
download_btn.href = href;
|
download_btn.href = href;
|
||||||
|
if(collection.type == CollectionType.WEBCAL){
|
||||||
|
download_btn.parentElement.classList.add("hidden");
|
||||||
|
}
|
||||||
delete_btn.onclick = function() {return ondelete(collection);};
|
delete_btn.onclick = function() {return ondelete(collection);};
|
||||||
edit_btn.onclick = function() {return onedit(collection);};
|
edit_btn.onclick = function() {return onedit(collection);};
|
||||||
node.classList.remove("hidden");
|
node.classList.remove("hidden");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue