Remove the tutorial components and logic

This commit is contained in:
Johannes Zellner
2017-01-17 12:44:07 +01:00
parent 81b7e5645c
commit 81862bf934
4 changed files with 1 additions and 81 deletions

View File

@@ -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;