├── README.md
├── app.js
├── bower.json
├── LICENSE
├── index.html
├── styles.css
└── wizard.js
/README.md:
--------------------------------------------------------------------------------
1 | # angular-ui-fuelux-wizard
2 |
3 | [](https://gitter.im/farhan2986/angular-ui-fuelux-wizard?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4 | fully customizable fuelux angular directive
5 |
--------------------------------------------------------------------------------
/app.js:
--------------------------------------------------------------------------------
1 |
2 |
3 | var app = angular.module('demoApp', ['fuelux.wizard']);
4 |
5 | app.controller('WizardController', ['$scope','$interval', function($scope, $interval){
6 | $scope.stepCurrent = 0;
7 | $scope.log = function(event){
8 | console.log(event);
9 | //if(event.direction=='next') return true;
10 | }
11 | $interval(function(){$scope.stepCurrent = Math.floor(Math.random(0, 5)*5);}, 2000);
12 |
13 | $scope.$watch('stepCurrent', function(stepValue) {
14 | console.log("stepCurrent updated ", stepValue, $scope.stepCurrent);
15 | });
16 | }]);
17 |
--------------------------------------------------------------------------------
/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-ui-fuelux-wizard",
3 | "version": "1.0.0",
4 | "homepage": "https://github.com/farhan2986/angular-ui-fuelux-wizard",
5 | "authors": [
6 | "farhan2986"
7 | ],
8 | "description": "angular directive for fuelux-wizard",
9 | "main": "wizard.js",
10 | "moduleType": [
11 | "node"
12 | ],
13 | "keywords": [
14 | "fuelux-wizard",
15 | "angular",
16 | "customizable"
17 | ],
18 | "license": "MIT",
19 | "ignore": [
20 | "**/.*",
21 | "node_modules",
22 | "bower_components",
23 | "test",
24 | "tests"
25 | ]
26 | }
27 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2015 Farhan Shahid
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |