summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorpliablepixels <pliablepixels@gmail.com>2016-05-01 17:43:08 -0400
committerpliablepixels <pliablepixels@gmail.com>2016-05-01 17:43:08 -0400
commit69c22673918cf3f8c95a1bbb866496a9e02ad0ce (patch)
treefc40a89aec9742bb850b5ccea3f592ffb0127998 /www
parent7613d937e3c5b0cc704cbb564dbf43d35eaee4f6 (diff)
#234 - integrated with first use
Former-commit-id: 9c465ceba917d2fc2ed021eab4f340e5aa3879de
Diffstat (limited to 'www')
-rw-r--r--www/css/style.css4
-rw-r--r--www/js/FirstUseCtrl.js9
-rw-r--r--www/templates/first-use.html15
-rw-r--r--www/templates/wizard.html2
4 files changed, 26 insertions, 4 deletions
diff --git a/www/css/style.css b/www/css/style.css
index 32aaba63..589549a8 100644
--- a/www/css/style.css
+++ b/www/css/style.css
@@ -883,4 +883,8 @@ body { font-family: sans-serif; }
border-style: solid;
}
+.wiz-list {
+ list-style-type: disc;
+ list-style-position: inside;
+}
diff --git a/www/js/FirstUseCtrl.js b/www/js/FirstUseCtrl.js
index f774534b..2e0d5c85 100644
--- a/www/js/FirstUseCtrl.js
+++ b/www/js/FirstUseCtrl.js
@@ -28,6 +28,15 @@ $scope.openMenu = function () {
$state.go("login" ,{"wizard": false});
};
+ $scope.goToWizard = function()
+ {
+ $ionicHistory.nextViewOptions({
+ disableAnimate: false,
+ disableBack: true
+ });
+ $state.go("wizard" );
+ };
+
}]);
diff --git a/www/templates/first-use.html b/www/templates/first-use.html
index bf8808c1..f9fb050c 100644
--- a/www/templates/first-use.html
+++ b/www/templates/first-use.html
@@ -19,9 +19,18 @@
</span>
<br/>
- <button id="firstuse" class="button button-stable animated bounceInUp" ng-click="goToLogin()">
- Let's Get Started!
- </button>
+ <div id="firstuse">
+
+
+ <button class="button icon icon-left ion-wand button-stable animated bounceInUp" ng-click="goToWizard()">
+ Wizard
+ </button>
+
+ <button class="button icon icon-left ion-university button-stable animated bounceInUp" ng-click="goToLogin()">
+ Expert
+ </button>
+
+ </div>
</center>
diff --git a/www/templates/wizard.html b/www/templates/wizard.html
index 9549ae7b..77b54773 100644
--- a/www/templates/wizard.html
+++ b/www/templates/wizard.html
@@ -101,7 +101,7 @@
<br/>
<div class="wizardtip">
zmWizard has tried its best to autodetect what it could. You could either:
- <ul>
+ <ul class="wiz-list">
<li>Go back to previous steps and re-do</li>
<li>Go to the login screen with these findings auto filled in</li>
</ul>