From acdd253081d26b09223d63e8d2bc2a6bf3771c3b Mon Sep 17 00:00:00 2001 From: Guangcong Luo Date: Fri, 11 Dec 2015 05:06:44 -0500 Subject: [PATCH] Fix style issue --- js/storage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/storage.js b/js/storage.js index 712d3c9f2..9d43c897f 100644 --- a/js/storage.js +++ b/js/storage.js @@ -1036,7 +1036,7 @@ Storage.createReplayFile = function (room) { return buf; }; -Storage.createReplayFileHref = function(room) { +Storage.createReplayFileHref = function (room) { return 'data:text/plain;base64,' + encodeURIComponent(window.btoa(unescape(encodeURIComponent(Storage.createReplayFile(room))))); };