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>2018-06-20 21:08:12 +0300
committernachoparker <nacho@ownyourbits.com>2018-06-21 13:33:13 +0300
commita0a31b4b9679c1e455254d514219ab69e0c543c2 (patch)
treeb9a569d26343ef8ae4a39f9e2b97e75f79593ae7
parentde5d9fb86ec0c6a5482a51e8dc865011d4e15f46 (diff)
ncp-web: fix JS docker detectionv0.57.10
-rwxr-xr-xbuild-SD-armbian.sh3
-rw-r--r--changelog.md6
-rw-r--r--ncp-web/wizard/JS/wizard.js2
3 files changed, 6 insertions, 5 deletions
diff --git a/build-SD-armbian.sh b/build-SD-armbian.sh
index 967a7aa6..6e9fc322 100755
--- a/build-SD-armbian.sh
+++ b/build-SD-armbian.sh
@@ -51,9 +51,8 @@ CONF="config-$BOARD".conf
# build
armbian/compile.sh docker
-mv armbian/output/images/Armbian*.img "$IMG"
-
# pack image
+mv armbian/output/images/Armbian*.img "$IMG"
TAR=output/"$( basename "$IMG" .img ).tar.bz2"
pack_image "$IMG" "$TAR"
diff --git a/changelog.md b/changelog.md
index ae5e2cc4..4f02e8d4 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,7 +1,9 @@
-[v0.57.8](https://github.com/nextcloud/nextcloudpi/commit/61360da) (2018-06-19) docker: adapt wizard
+[v0.57.9](https://github.com/nextcloud/nextcloudpi/commit/b91d989) (2018-06-20) ncp-web: fix JS docker detection
-[v0.57.7](https://github.com/nextcloud/nextcloudpi/commit/98c99e3) (2018-06-19) docker: fix persist ncp-web password
+[v0.57.8 ](https://github.com/nextcloud/nextcloudpi/commit/e63523c) (2018-06-19) docker: adapt wizard
+
+[v0.57.7 ](https://github.com/nextcloud/nextcloudpi/commit/98c99e3) (2018-06-19) docker: fix persist ncp-web password
[v0.57.6 ](https://github.com/nextcloud/nextcloudpi/commit/9d0d3b3) (2018-06-19) fix mysqld service named mysql
diff --git a/ncp-web/wizard/JS/wizard.js b/ncp-web/wizard/JS/wizard.js
index e57b1282..8f0c4bbe 100644
--- a/ncp-web/wizard/JS/wizard.js
+++ b/ncp-web/wizard/JS/wizard.js
@@ -2,7 +2,7 @@
/*global $, jQuery, alert*/
$(document).ready(function(){
- var in_docker = $('#in-docker');
+ var in_docker = document.getElementById( 'in-docker' );
function addNotification( txt, tclass )
{