├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── _redirects ├── doit.js ├── gulpfile.js ├── images ├── favicon.ico └── manifest │ ├── icon-144x144.png │ ├── icon-192x192.png │ ├── icon-48x48.png │ ├── icon-512x512.png │ ├── icon-72x72.png │ └── icon-96x96.png ├── index.html ├── manifest.json ├── package.json ├── polymer.json ├── service-worker.js ├── src ├── actions │ ├── app.js │ └── data.js ├── components │ ├── a-card.js │ ├── about-page.js │ ├── check-box.js │ ├── fab-styles.js │ ├── my-app.js │ ├── my-icons.js │ ├── my-view404.js │ ├── page-view-element.js │ ├── play-page.js │ ├── shared-styles.js │ ├── snack-bar.js │ └── stats-page.js ├── data │ ├── basic-phrases.json │ ├── hiragana.json │ ├── katakana.json │ └── numbers.json ├── localStorage.js ├── reducers │ ├── app.js │ └── data.js └── store.js ├── sw-precache-config.js ├── test ├── .eslintrc.json ├── integration │ ├── screenshots-baseline │ │ ├── narrow │ │ │ ├── about.png │ │ │ ├── batmanNotAView.png │ │ │ ├── index.png │ │ │ ├── play.png │ │ │ └── stats.png │ │ ├── regenerate.js │ │ └── wide │ │ │ ├── about.png │ │ │ ├── batmanNotAView.png │ │ │ ├── index.png │ │ │ ├── play.png │ │ │ └── stats.png │ └── visual.js ├── screenshots-baseline │ └── regenerate.js └── unit │ ├── index.html │ └── views-a11y.html └── wct.conf.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/README.md -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/_redirects -------------------------------------------------------------------------------- /doit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/doit.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/gulpfile.js -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /images/manifest/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/images/manifest/icon-144x144.png -------------------------------------------------------------------------------- /images/manifest/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/images/manifest/icon-192x192.png -------------------------------------------------------------------------------- /images/manifest/icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/images/manifest/icon-48x48.png -------------------------------------------------------------------------------- /images/manifest/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/images/manifest/icon-512x512.png -------------------------------------------------------------------------------- /images/manifest/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/images/manifest/icon-72x72.png -------------------------------------------------------------------------------- /images/manifest/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/images/manifest/icon-96x96.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/index.html -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/package.json -------------------------------------------------------------------------------- /polymer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/polymer.json -------------------------------------------------------------------------------- /service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/service-worker.js -------------------------------------------------------------------------------- /src/actions/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/actions/app.js -------------------------------------------------------------------------------- /src/actions/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/actions/data.js -------------------------------------------------------------------------------- /src/components/a-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/components/a-card.js -------------------------------------------------------------------------------- /src/components/about-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/components/about-page.js -------------------------------------------------------------------------------- /src/components/check-box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/components/check-box.js -------------------------------------------------------------------------------- /src/components/fab-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/components/fab-styles.js -------------------------------------------------------------------------------- /src/components/my-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/components/my-app.js -------------------------------------------------------------------------------- /src/components/my-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/components/my-icons.js -------------------------------------------------------------------------------- /src/components/my-view404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/components/my-view404.js -------------------------------------------------------------------------------- /src/components/page-view-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/components/page-view-element.js -------------------------------------------------------------------------------- /src/components/play-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/components/play-page.js -------------------------------------------------------------------------------- /src/components/shared-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/components/shared-styles.js -------------------------------------------------------------------------------- /src/components/snack-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/components/snack-bar.js -------------------------------------------------------------------------------- /src/components/stats-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/components/stats-page.js -------------------------------------------------------------------------------- /src/data/basic-phrases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/data/basic-phrases.json -------------------------------------------------------------------------------- /src/data/hiragana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/data/hiragana.json -------------------------------------------------------------------------------- /src/data/katakana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/data/katakana.json -------------------------------------------------------------------------------- /src/data/numbers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/data/numbers.json -------------------------------------------------------------------------------- /src/localStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/localStorage.js -------------------------------------------------------------------------------- /src/reducers/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/reducers/app.js -------------------------------------------------------------------------------- /src/reducers/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/reducers/data.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/src/store.js -------------------------------------------------------------------------------- /sw-precache-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/sw-precache-config.js -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/integration/screenshots-baseline/narrow/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/test/integration/screenshots-baseline/narrow/about.png -------------------------------------------------------------------------------- /test/integration/screenshots-baseline/narrow/batmanNotAView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/test/integration/screenshots-baseline/narrow/batmanNotAView.png -------------------------------------------------------------------------------- /test/integration/screenshots-baseline/narrow/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/test/integration/screenshots-baseline/narrow/index.png -------------------------------------------------------------------------------- /test/integration/screenshots-baseline/narrow/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/test/integration/screenshots-baseline/narrow/play.png -------------------------------------------------------------------------------- /test/integration/screenshots-baseline/narrow/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/test/integration/screenshots-baseline/narrow/stats.png -------------------------------------------------------------------------------- /test/integration/screenshots-baseline/regenerate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/test/integration/screenshots-baseline/regenerate.js -------------------------------------------------------------------------------- /test/integration/screenshots-baseline/wide/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/test/integration/screenshots-baseline/wide/about.png -------------------------------------------------------------------------------- /test/integration/screenshots-baseline/wide/batmanNotAView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/test/integration/screenshots-baseline/wide/batmanNotAView.png -------------------------------------------------------------------------------- /test/integration/screenshots-baseline/wide/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/test/integration/screenshots-baseline/wide/index.png -------------------------------------------------------------------------------- /test/integration/screenshots-baseline/wide/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/test/integration/screenshots-baseline/wide/play.png -------------------------------------------------------------------------------- /test/integration/screenshots-baseline/wide/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/test/integration/screenshots-baseline/wide/stats.png -------------------------------------------------------------------------------- /test/integration/visual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/test/integration/visual.js -------------------------------------------------------------------------------- /test/screenshots-baseline/regenerate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/test/screenshots-baseline/regenerate.js -------------------------------------------------------------------------------- /test/unit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/test/unit/index.html -------------------------------------------------------------------------------- /test/unit/views-a11y.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/test/unit/views-a11y.html -------------------------------------------------------------------------------- /wct.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/flash-cards/HEAD/wct.conf.json --------------------------------------------------------------------------------