├── .eslintrc ├── .firebaserc ├── .gitignore ├── .prettierrc ├── README.md ├── firebase.json ├── formulas.txt ├── functions ├── .eslintrc.json ├── .gitignore ├── index.js ├── package-lock.json └── package.json ├── index.js ├── package.json └── src ├── assets ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.png └── twitter-card.png ├── examples.json ├── favicon ├── index.html └── index.js ├── gallery ├── index.html ├── index.js ├── snippets.txt └── style.styl ├── gif ├── gif.worker.js ├── index.html ├── index.js └── style.styl ├── image └── index.js ├── index.html ├── index.js └── style.styl /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/.eslintrc -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/firebase.json -------------------------------------------------------------------------------- /formulas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/formulas.txt -------------------------------------------------------------------------------- /functions/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/functions/.eslintrc.json -------------------------------------------------------------------------------- /functions/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/functions/package.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/assets/android-chrome-192x192.png -------------------------------------------------------------------------------- /src/assets/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/assets/android-chrome-512x512.png -------------------------------------------------------------------------------- /src/assets/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/assets/apple-touch-icon.png -------------------------------------------------------------------------------- /src/assets/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/assets/favicon-16x16.png -------------------------------------------------------------------------------- /src/assets/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/assets/favicon-32x32.png -------------------------------------------------------------------------------- /src/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/assets/favicon.png -------------------------------------------------------------------------------- /src/assets/twitter-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/assets/twitter-card.png -------------------------------------------------------------------------------- /src/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/examples.json -------------------------------------------------------------------------------- /src/favicon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/favicon/index.html -------------------------------------------------------------------------------- /src/favicon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/favicon/index.js -------------------------------------------------------------------------------- /src/gallery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/gallery/index.html -------------------------------------------------------------------------------- /src/gallery/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/gallery/index.js -------------------------------------------------------------------------------- /src/gallery/snippets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/gallery/snippets.txt -------------------------------------------------------------------------------- /src/gallery/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/gallery/style.styl -------------------------------------------------------------------------------- /src/gif/gif.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/gif/gif.worker.js -------------------------------------------------------------------------------- /src/gif/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/gif/index.html -------------------------------------------------------------------------------- /src/gif/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/gif/index.js -------------------------------------------------------------------------------- /src/gif/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/gif/style.styl -------------------------------------------------------------------------------- /src/image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/image/index.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/index.js -------------------------------------------------------------------------------- /src/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemkei/tixy/HEAD/src/style.styl --------------------------------------------------------------------------------