diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2017-12-08 12:04:03 +0100 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2017-12-08 12:12:58 +0100 |
commit | 8053f54194a24886b9d8a16cbdbc37e3154c2bf1 (patch) | |
tree | 73707749431b7ded615bf9242d156462000de037 /www-apps/nextcloud/files | |
parent | www-client/opera-beta: Old. (diff) | |
download | gentoo-8053f54194a24886b9d8a16cbdbc37e3154c2bf1.tar.gz gentoo-8053f54194a24886b9d8a16cbdbc37e3154c2bf1.tar.bz2 gentoo-8053f54194a24886b9d8a16cbdbc37e3154c2bf1.zip |
www-apps/nextcloud: 11.0.6/12.0.4 bumps
Also backport bugfix on authentication required
Closes: https://bugs.gentoo.org/639994
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'www-apps/nextcloud/files')
-rw-r--r-- | www-apps/nextcloud/files/nextcloud-12.0.4-destroy_modal_when_closed.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/www-apps/nextcloud/files/nextcloud-12.0.4-destroy_modal_when_closed.patch b/www-apps/nextcloud/files/nextcloud-12.0.4-destroy_modal_when_closed.patch new file mode 100644 index 000000000000..ca63cb6db402 --- /dev/null +++ b/www-apps/nextcloud/files/nextcloud-12.0.4-destroy_modal_when_closed.patch @@ -0,0 +1,26 @@ +From 75bc40f7a08e11fc115e4986bb45fc314d49632a Mon Sep 17 00:00:00 2001 +From: Thomas Bille <thomas.bille625@gmail.com> +Date: Mon, 10 Jul 2017 14:33:41 +0200 +Subject: [PATCH] Destroy modal when closed + +Signed-off-by: Thomas Bille <contact@tbille.fr> +--- + core/js/jquery.ocdialog.js | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +diff --git a/core/js/jquery.ocdialog.js b/core/js/jquery.ocdialog.js +index 555b35e59ff..f3a54119e78 100644 +--- a/core/js/jquery.ocdialog.js ++++ b/core/js/jquery.ocdialog.js +@@ -212,8 +212,10 @@ + // Ugly hack to catch remaining keyup events. + setTimeout(function() { + self._trigger('close', self); +- self.$dialog.hide(); + }, 200); ++ ++ self.$dialog.remove(); ++ this.destroy(); + }, + destroy: function() { + if(this.$title) { |