Fix style issue

This commit is contained in:
Guangcong Luo 2015-12-11 05:06:44 -05:00
parent 40e88616dc
commit acdd253081

View File

@ -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)))));
};