diff --git a/webadmin/src/index.html b/webadmin/src/index.html
index 4cc380ce8..ff943ee1d 100644
--- a/webadmin/src/index.html
+++ b/webadmin/src/index.html
@@ -73,35 +73,6 @@
-
-
-
-
Welcome {{ user.username }}
-
This is the administration page of your Cloudron. It shows your installed apps.
-
-
-
-
-
-
-
Cloudron Store
-
Install apps easily into any subdomain and control who can access it.
-
Your apps stay updated, backed up and secure with no effort on your part.
-
-
-
-
-
-
-
Users and Groups
-
The Cloudron comes with built-in user and group managment
-
Remember, you can use the same credentials to login to all your apps.
-
-
-
-
-
-
diff --git a/webadmin/src/js/main.js b/webadmin/src/js/main.js
index 969ec1498..546339735 100644
--- a/webadmin/src/js/main.js
+++ b/webadmin/src/js/main.js
@@ -7,45 +7,6 @@ angular.module('Application').controller('MainController', ['$scope', '$route',
$scope.config = {};
$scope.client = Client;
- $scope.tutorialStep = -1;
- $scope.tutorialSteps = [
- { title: 'intro', page: '#/apps' },
- { title: 'appstore', page: '#/appstore' },
- { title: 'users', page: '#/users' }
- ];
-
- $scope.startTutorial = function () {
- $scope.tutorialStep = 0;
- if ($scope.tutorialSteps[$scope.tutorialStep]) window.location.href = $scope.tutorialSteps[$scope.tutorialStep].page;
- };
-
- $scope.endTutorial = function () {
- $scope.tutorialStep = -1;
-
- Client.setShowTutorial(false, function (error) {
- if (error) console.error(error);
-
- window.location.href = '#/apps';
-
- // now run configure checks which might show notifications
- runConfigurationChecks();
- });
- };
-
- $scope.nextTutorialStep = function () {
- $scope.tutorialStep += 1;
-
- if ($scope.tutorialSteps[$scope.tutorialStep]) window.location.href = $scope.tutorialSteps[$scope.tutorialStep].page;
-
- if ($scope.tutorialStep >= $scope.tutorialSteps.length) $scope.endTutorial();
- };
-
- $scope.prevTutorialStep = function () {
- $scope.tutorialStep -= 1;
-
- if ($scope.tutorialSteps[$scope.tutorialStep]) window.location.href = $scope.tutorialSteps[$scope.tutorialStep].page;
- };
-
$scope.update = {
busy: false,
error: {},
@@ -202,11 +163,7 @@ angular.module('Application').controller('MainController', ['$scope', '$route',
});
}
- if ($scope.user.admin) {
- // welcome screen or configure checks immediately
- if ($scope.user.showTutorial) $scope.startTutorial();
- else runConfigurationChecks();
- }
+ if ($scope.user.admin) runConfigurationChecks();
});
});
});
diff --git a/webadmin/src/views/account.html b/webadmin/src/views/account.html
index 0cc1bf5b0..27d4a7148 100644
--- a/webadmin/src/views/account.html
+++ b/webadmin/src/views/account.html
@@ -136,7 +136,6 @@
-
|
diff --git a/webadmin/src/views/account.js b/webadmin/src/views/account.js
index 2f86459b1..675b28be3 100644
--- a/webadmin/src/views/account.js
+++ b/webadmin/src/views/account.js
@@ -167,13 +167,6 @@ angular.module('Application').controller('AccountController', ['$scope', 'Client
}
};
- $scope.showTutorial = function () {
- Client.setShowTutorial(true, function (error) {
- if (error) return console.error(error);
- $scope.$parent.startTutorial();
- });
- };
-
// poor man's async
function asyncForEach(items, handler, callback) {
var cur = 0;