From ad7c6a313c72145fb2dde4d81b8f68ca4d0f6cc3 Mon Sep 17 00:00:00 2001 From: Ib Green Date: Mon, 1 Jun 2020 07:52:43 -0700 Subject: [PATCH] lint --- modules/video/docs/api-reference/gif-builder.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/modules/video/docs/api-reference/gif-builder.md b/modules/video/docs/api-reference/gif-builder.md index c660103f5a..10d6a7e8d8 100644 --- a/modules/video/docs/api-reference/gif-builder.md +++ b/modules/video/docs/api-reference/gif-builder.md @@ -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(); ```