diff --git a/lib/widgets/ansiimage.js b/lib/widgets/ansiimage.js index 0d007f2..cf10696 100644 --- a/lib/widgets/ansiimage.js +++ b/lib/widgets/ansiimage.js @@ -121,9 +121,11 @@ ANSIImage.prototype.setImage = function(file) { ANSIImage.prototype.play = function() { return this.img.play(); }; + ANSIImage.prototype.pause = function() { return this.img.pause(); }; + ANSIImage.prototype.stop = function() { return this.img.stop(); };