├── .gitignore ├── Gruntfile.js ├── LICENSE.txt ├── README.md ├── bower.json ├── dist ├── .gitkeep ├── ng-onboarding.css ├── ng-onboarding.js └── ng-onboarding.min.js ├── index.html ├── karma.conf.coffee ├── package.json ├── screenshot.png ├── spec └── ng-onboarding-specs.coffee └── src ├── ng-onboarding.coffee └── ng-onboarding.less /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamalbrecht/ngOnboarding/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamalbrecht/ngOnboarding/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamalbrecht/ngOnboarding/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamalbrecht/ngOnboarding/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamalbrecht/ngOnboarding/HEAD/bower.json -------------------------------------------------------------------------------- /dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/ng-onboarding.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamalbrecht/ngOnboarding/HEAD/dist/ng-onboarding.css -------------------------------------------------------------------------------- /dist/ng-onboarding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamalbrecht/ngOnboarding/HEAD/dist/ng-onboarding.js -------------------------------------------------------------------------------- /dist/ng-onboarding.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamalbrecht/ngOnboarding/HEAD/dist/ng-onboarding.min.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamalbrecht/ngOnboarding/HEAD/index.html -------------------------------------------------------------------------------- /karma.conf.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamalbrecht/ngOnboarding/HEAD/karma.conf.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamalbrecht/ngOnboarding/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamalbrecht/ngOnboarding/HEAD/screenshot.png -------------------------------------------------------------------------------- /spec/ng-onboarding-specs.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamalbrecht/ngOnboarding/HEAD/spec/ng-onboarding-specs.coffee -------------------------------------------------------------------------------- /src/ng-onboarding.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamalbrecht/ngOnboarding/HEAD/src/ng-onboarding.coffee -------------------------------------------------------------------------------- /src/ng-onboarding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamalbrecht/ngOnboarding/HEAD/src/ng-onboarding.less --------------------------------------------------------------------------------