From 97d72926a5b13e36494ba3c8bc7f14e474b6fe8e Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Fri, 17 Jul 2015 03:14:45 -0700 Subject: [PATCH] minor: whitespace. --- lib/widgets/ansiimage.js | 2 ++ 1 file changed, 2 insertions(+) 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(); };