diff --git a/app_sources/Core/controllers/currentpage.js b/app_sources/Core/controllers/currentpage.js index f433513..cbeb7d4 100644 --- a/app_sources/Core/controllers/currentpage.js +++ b/app_sources/Core/controllers/currentpage.js @@ -1,7 +1,7 @@ 'use strict'; -app.controller('CurrentPage', ['$scope', '$location', - function($scope, $location) { +app.controller('rootControler', ['$scope', '$location', 'zspin', + function($scope, $location, zspin) { $scope.$on('$locationChangeSuccess', function (event, newLoc, oldLoc) { // generate some class names for
tag, based on first 2 url hashes var hashes = window.location.hash @@ -10,6 +10,8 @@ app.controller('CurrentPage', ['$scope', '$location', .trim() .split(' '); $scope.currentPath = hashes.slice(0, 2).join(' '); + $scope.zspinOptions = zspin.options; }); + } ]); diff --git a/app_sources/Intro/styles.scss b/app_sources/Intro/styles.scss index 6e8d237..c75349f 100644 --- a/app_sources/Intro/styles.scss +++ b/app_sources/Intro/styles.scss @@ -4,4 +4,5 @@ overflow: hidden; position: absolute; background-color: #000; + cursor:none; } \ No newline at end of file diff --git a/app_sources/Intro/template.html b/app_sources/Intro/template.html index 56a6ab8..3eadf6b 100644 --- a/app_sources/Intro/template.html +++ b/app_sources/Intro/template.html @@ -1,3 +1,4 @@ +