├── .babelrc ├── .eslintrc.yaml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bower.json ├── examples ├── css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 ├── index.html └── js │ └── controllers │ └── app.js ├── karma.conf.js ├── package.json ├── src ├── angular-screenshot.js ├── directives │ ├── index.js │ ├── screenshot-toolbox.js │ └── screenshot.js ├── stylesheets │ ├── components │ │ └── screenshot-toolbox.css │ ├── index.css │ └── shared │ │ ├── colors.css │ │ └── typography.css └── utils │ ├── dom-capture.js │ ├── dom-process.js │ └── index.js ├── test ├── dom-process.spec.js ├── index.js └── screenshot.spec.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/.eslintrc.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/bower.json -------------------------------------------------------------------------------- /examples/css/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/examples/css/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /examples/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/examples/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /examples/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/examples/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /examples/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/examples/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /examples/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/examples/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /examples/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/examples/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /examples/css/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/examples/css/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /examples/css/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/examples/css/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /examples/css/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/examples/css/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /examples/css/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/examples/css/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /examples/css/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/examples/css/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/js/controllers/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/examples/js/controllers/app.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/package.json -------------------------------------------------------------------------------- /src/angular-screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/src/angular-screenshot.js -------------------------------------------------------------------------------- /src/directives/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/src/directives/index.js -------------------------------------------------------------------------------- /src/directives/screenshot-toolbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/src/directives/screenshot-toolbox.js -------------------------------------------------------------------------------- /src/directives/screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/src/directives/screenshot.js -------------------------------------------------------------------------------- /src/stylesheets/components/screenshot-toolbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/src/stylesheets/components/screenshot-toolbox.css -------------------------------------------------------------------------------- /src/stylesheets/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/src/stylesheets/index.css -------------------------------------------------------------------------------- /src/stylesheets/shared/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/src/stylesheets/shared/colors.css -------------------------------------------------------------------------------- /src/stylesheets/shared/typography.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --toolbox-btn-gap: 0.2em; 3 | } -------------------------------------------------------------------------------- /src/utils/dom-capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/src/utils/dom-capture.js -------------------------------------------------------------------------------- /src/utils/dom-process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/src/utils/dom-process.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /test/dom-process.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/test/dom-process.spec.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/test/index.js -------------------------------------------------------------------------------- /test/screenshot.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/test/screenshot.spec.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihanchen/angular-screenshot/HEAD/webpack.config.js --------------------------------------------------------------------------------