├── .gitignore ├── .htaccess ├── Gruntfile.js ├── README.md ├── app ├── scripts │ ├── app.js │ └── directives │ │ └── typewrite-directive.js └── style │ └── angular-typewrite.css ├── bower.json ├── dist ├── angular-typewrite.css └── angular-typewrite.js ├── favicon.ico ├── index.html ├── npm-dist ├── angular-typewrite.css └── angular-typewrite.js ├── package.json └── robots.txt /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .tmp 3 | .sass-cache 4 | *.swp 5 | bower_components 6 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocapelo/angular-typewrite/HEAD/.htaccess -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocapelo/angular-typewrite/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocapelo/angular-typewrite/HEAD/README.md -------------------------------------------------------------------------------- /app/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocapelo/angular-typewrite/HEAD/app/scripts/app.js -------------------------------------------------------------------------------- /app/scripts/directives/typewrite-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocapelo/angular-typewrite/HEAD/app/scripts/directives/typewrite-directive.js -------------------------------------------------------------------------------- /app/style/angular-typewrite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocapelo/angular-typewrite/HEAD/app/style/angular-typewrite.css -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocapelo/angular-typewrite/HEAD/bower.json -------------------------------------------------------------------------------- /dist/angular-typewrite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocapelo/angular-typewrite/HEAD/dist/angular-typewrite.css -------------------------------------------------------------------------------- /dist/angular-typewrite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocapelo/angular-typewrite/HEAD/dist/angular-typewrite.js -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocapelo/angular-typewrite/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocapelo/angular-typewrite/HEAD/index.html -------------------------------------------------------------------------------- /npm-dist/angular-typewrite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocapelo/angular-typewrite/HEAD/npm-dist/angular-typewrite.css -------------------------------------------------------------------------------- /npm-dist/angular-typewrite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocapelo/angular-typewrite/HEAD/npm-dist/angular-typewrite.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocapelo/angular-typewrite/HEAD/package.json -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | --------------------------------------------------------------------------------