Index: bower_components/gif.js/site/contents/code.md |
diff --git a/bower_components/gif.js/site/contents/code.md b/bower_components/gif.js/site/contents/code.md |
deleted file mode 100644 |
index e5a1c66a3373b2886a8f6b0b6bd7357eda2eaa20..0000000000000000000000000000000000000000 |
--- a/bower_components/gif.js/site/contents/code.md |
+++ /dev/null |
@@ -1,23 +0,0 @@ |
- |
-```javascript |
-var gif = new GIF({ |
- workers: 2, |
- quality: 10 |
-}); |
- |
-// add a image element |
-gif.addFrame(imageElement); |
- |
-// or a canvas element |
-gif.addFrame(canvasElement, {delay: 200}); |
- |
-// or copy the pixels from a canvas context |
-gif.addFrame(ctx, {copy: true}); |
- |
-gif.on('finished', function(blob) { |
- window.open(URL.createObjectURL(blob)); |
-}); |
- |
-gif.render(); |
- |
-``` |