Skip to content

Commit

Permalink
clean up various files
Browse files Browse the repository at this point in the history
  • Loading branch information
tsayen committed Sep 22, 2015
1 parent ea63269 commit d8ae381
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
node_modules
bower_components
*.iml
.sublime*
.tags
.tags*
7 changes: 5 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"authors": [
"tsayen <[email protected]>"
],
"description": "Generates an image from a DOM node using HTML5 canvas",
"description": "Generates an image from a DOM node using HTML5 canvas and SVG foreignObject",
"main": "src/dom-to-image.js",
"moduleType": [
"globals"
Expand All @@ -14,7 +14,10 @@
"dom",
"image",
"raster",
"render"
"render",
"html",
"canvas",
"svg"
],
"license": "MIT",
"ignore": [
Expand Down
3 changes: 0 additions & 3 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ module.exports = function (config) {
'bower_components/jquery/dist/jquery.js',
'bower_components/js-imagediff/imagediff.js',
'bower_components/ocrad-bower/ocrad.js',
// 'bower_components/fontawesome/css/font-awesome.css',

'src/dom-to-image.js',
'spec/dom-to-image.spec.js'
Expand All @@ -28,8 +27,6 @@ module.exports = function (config) {
},
autoWatch: true,
browsers: ['Chrome', 'Firefox'],
// browsers: ['Chrome'/*, 'Firefox'*/],
// browsers: [/*'Chrome'*/, 'Firefox'],
singleRun: false,
browserNoActivityTimeout: 60000
});
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@
"dom",
"image",
"raster",
"render"
"render",
"html",
"canvas",
"svg"
],
"author": "tsayen <[email protected]>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion spec/dom-to-image.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
.then(done).catch(error);
});

it('should render whole node when its is scrolled', function (done) {
it('should render whole node when its scrolled', function (done) {
var domNode;
loadTestPage('scroll/dom-node.html', 'scroll/style.css', 'scroll/control-image')
.then(function () {
Expand Down

0 comments on commit d8ae381

Please sign in to comment.