Use standard way of showing and hiding popover menu
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
parent
b3ccaf815d
commit
bc47668206
|
@ -426,7 +426,7 @@ $(document).ready(function () {
|
|||
}
|
||||
|
||||
$('#share-menutoggle').click(function() {
|
||||
$('#share-menu').show();
|
||||
$('#share-menu').toggleClass('open');
|
||||
});
|
||||
});
|
||||
|
||||
|
@ -436,6 +436,6 @@ $(document).mouseup(function(e) {
|
|||
|
||||
// if the target of the click isn't the container nor a descendant of the container
|
||||
if (!container.is(e.target) && container.has(e.target).length === 0) {
|
||||
container.hide();
|
||||
container.removeClass('open');
|
||||
}
|
||||
});
|
||||
|
|
|
@ -50,7 +50,7 @@ $maxUploadFilesize = min($upload_max_filesize, $post_max_size);
|
|||
<div class="header-right">
|
||||
<?php if (!isset($_['hideFileList']) || (isset($_['hideFileList']) && $_['hideFileList'] === false)) { ?>
|
||||
<a href="#" id="share-menutoggle" class="menutoggle icon-more-white"><span class="share-menutoggle-text"><?php p($l->t('Download')) ?></span></a>
|
||||
<div id="share-menu" class="popovermenu menu hidden">
|
||||
<div id="share-menu" class="popovermenu menu">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="<?php p($_['downloadURL']); ?>" id="download">
|
||||
|
|
Loading…
Reference in New Issue