Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornachoparker <nacho@ownyourbits.com>2019-01-11 05:27:44 +0300
committernachoparker <nacho@ownyourbits.com>2019-01-11 05:27:47 +0300
commit228c818203d0968bd81d81e4fe0e17166584939e (patch)
tree5a67c5f1de80594addc7d3e48f5bf2c364e535ae
parent6ba0cb0638160e24070d5ed5ce5212f46a660bbc (diff)
ncp-web: fix section unselected when sidebar reloadsv1.1.2
-rw-r--r--changelog.md6
-rw-r--r--ncp-web/js/ncp.js2
2 files changed, 5 insertions, 3 deletions
diff --git a/changelog.md b/changelog.md
index fc7faac2..cb333b85 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,7 +1,9 @@
-[v1.1.1](https://github.com/nextcloud/nextcloudpi/commit/a95bc68) (2019-01-10) ncp-web: escape HTML in details box
+[v1.1.2](https://github.com/nextcloud/nextcloudpi/commit/57b26ef) (2019-01-10) ncp-web: fix section unselected when sidebar reloads
-[v1.1.0](https://github.com/nextcloud/nextcloudpi/commit/0ff1df9) (2019-01-08) upgrade to NC15
+[v1.1.1](https://github.com/nextcloud/nextcloudpi/commit/6ba0cb0) (2019-01-10) ncp-web: escape HTML in details box
+
+[v1.1.0 ](https://github.com/nextcloud/nextcloudpi/commit/0ff1df9) (2019-01-08) upgrade to NC15
[v1.0.2 ](https://github.com/nextcloud/nextcloudpi/commit/06b00e4) (2019-01-09) wizard: dont change missing parameters
diff --git a/ncp-web/js/ncp.js b/ncp-web/js/ncp.js
index 0f5402e5..556bc90e 100644
--- a/ncp-web/js/ncp.js
+++ b/ncp-web/js/ncp.js
@@ -141,7 +141,7 @@ function reload_sidebar()
if ( ret.ret && ret.ret == '0' ) {
$('#ncp-options').ht( ret.output );
set_sidebar_click_handlers();
- if (selectedID)
+ if (selectedID && $$('#config-wrapper').style.display == 'block')
select_app($('#' + selectedID));
ncp_app_list = $('.ncp-app-list-item');