intro.js 232 B

12345678910
  1. /**
  2. * Created by petry_000 on 15.11.2016.
  3. */
  4. angular.module('SolvIn')
  5. .controller('IndexController', function ($scope, $state) {
  6. $scope.gotoWizard = function () {
  7. $state.go('wizard')
  8. };
  9. });