Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ibgreen committed Jun 1, 2020
1 parent db52327 commit ad7c6a3
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions modules/video/docs/api-reference/gif-builder.md
Expand Up @@ -21,9 +21,15 @@ import {ImageLoader} from '@loaders.gl/images';
import {GIFBuilder} from '@loaders.gl/video';

const gifBuilder = new GIFBuilder({source: 'images', width: 400, height: 400});
gifBuilder.add(await load('http://i.imgur.com/2OO33vX.jpg', ImageLoader, {images: {type: 'image'}}));
gifBuilder.add(await load('http://i.imgur.com/qOwVaSN.png', ImageLoader, {images: {type: 'image'}}));
gifBuilder.add(await load('http://i.imgur.com/Vo5mFZJ.gif', ImageLoader, {images: {type: 'image'}}));
gifBuilder.add(
await load('http://i.imgur.com/2OO33vX.jpg', ImageLoader, {images: {type: 'image'}})
);
gifBuilder.add(
await load('http://i.imgur.com/qOwVaSN.png', ImageLoader, {images: {type: 'image'}})
);
gifBuilder.add(
await load('http://i.imgur.com/Vo5mFZJ.gif', ImageLoader, {images: {type: 'image'}})
);
gifBuilder.build();
```

Expand Down

0 comments on commit ad7c6a3

Please sign in to comment.