Merge pull request #785 from nextcloud/stable10_779
[Stable10] Make 'Add to your website' toggleable
This commit is contained in:
commit
3914861b90
|
@ -13,7 +13,11 @@ $(document).ready(function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#oca-files-sharing-add-to-your-website').click(function() {
|
$('#oca-files-sharing-add-to-your-website').click(function() {
|
||||||
$('#oca-files-sharing-add-to-your-website-expanded').slideDown();
|
if ($('#oca-files-sharing-add-to-your-website-expanded').is(':visible')) {
|
||||||
|
$('#oca-files-sharing-add-to-your-website-expanded').slideUp();
|
||||||
|
} else {
|
||||||
|
$('#oca-files-sharing-add-to-your-website-expanded').slideDown();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue