├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── dist ├── prod │ ├── app-min.css │ ├── app-min.js │ └── app.js └── test │ ├── app-min.css │ ├── app-min.js │ └── app.js ├── gulpfile.js ├── package.json ├── src ├── app.js ├── app.less ├── components │ ├── buttonFloat │ │ ├── buttonFloat.js │ │ └── buttonFloat.less │ ├── buttonInfo │ │ ├── buttonInfo.js │ │ └── buttonInfo.less │ ├── buttonSend │ │ ├── buttonSend.js │ │ └── buttonSend.less │ ├── fieldProblem │ │ ├── fieldProblem.js │ │ └── fieldProblem.less │ ├── fieldScreenshot │ │ ├── fieldScreenshot.js │ │ └── fieldScreenshot.less │ └── widget │ │ ├── widget.js │ │ └── widget.less ├── libs │ └── reset.less └── utils │ ├── analytics.js │ ├── google │ ├── main.js │ └── updTable.js │ ├── metaData.js │ └── platform.js └── tutorial ├── index.html └── tutorial.mp4 /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/README.md -------------------------------------------------------------------------------- /dist/prod/app-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/dist/prod/app-min.css -------------------------------------------------------------------------------- /dist/prod/app-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/dist/prod/app-min.js -------------------------------------------------------------------------------- /dist/prod/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/dist/prod/app.js -------------------------------------------------------------------------------- /dist/test/app-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/dist/test/app-min.css -------------------------------------------------------------------------------- /dist/test/app-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/dist/test/app-min.js -------------------------------------------------------------------------------- /dist/test/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/dist/test/app.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/package.json -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/src/app.js -------------------------------------------------------------------------------- /src/app.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/src/app.less -------------------------------------------------------------------------------- /src/components/buttonFloat/buttonFloat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/src/components/buttonFloat/buttonFloat.js -------------------------------------------------------------------------------- /src/components/buttonFloat/buttonFloat.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/src/components/buttonFloat/buttonFloat.less -------------------------------------------------------------------------------- /src/components/buttonInfo/buttonInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/src/components/buttonInfo/buttonInfo.js -------------------------------------------------------------------------------- /src/components/buttonInfo/buttonInfo.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/src/components/buttonInfo/buttonInfo.less -------------------------------------------------------------------------------- /src/components/buttonSend/buttonSend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/src/components/buttonSend/buttonSend.js -------------------------------------------------------------------------------- /src/components/buttonSend/buttonSend.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/src/components/buttonSend/buttonSend.less -------------------------------------------------------------------------------- /src/components/fieldProblem/fieldProblem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/src/components/fieldProblem/fieldProblem.js -------------------------------------------------------------------------------- /src/components/fieldProblem/fieldProblem.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/src/components/fieldProblem/fieldProblem.less -------------------------------------------------------------------------------- /src/components/fieldScreenshot/fieldScreenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/src/components/fieldScreenshot/fieldScreenshot.js -------------------------------------------------------------------------------- /src/components/fieldScreenshot/fieldScreenshot.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/src/components/fieldScreenshot/fieldScreenshot.less -------------------------------------------------------------------------------- /src/components/widget/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/src/components/widget/widget.js -------------------------------------------------------------------------------- /src/components/widget/widget.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/src/components/widget/widget.less -------------------------------------------------------------------------------- /src/libs/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/src/libs/reset.less -------------------------------------------------------------------------------- /src/utils/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/src/utils/analytics.js -------------------------------------------------------------------------------- /src/utils/google/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/src/utils/google/main.js -------------------------------------------------------------------------------- /src/utils/google/updTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/src/utils/google/updTable.js -------------------------------------------------------------------------------- /src/utils/metaData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/src/utils/metaData.js -------------------------------------------------------------------------------- /src/utils/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/src/utils/platform.js -------------------------------------------------------------------------------- /tutorial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/tutorial/index.html -------------------------------------------------------------------------------- /tutorial/tutorial.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaux/bugbox/HEAD/tutorial/tutorial.mp4 --------------------------------------------------------------------------------