From bbb0c1622c2753bf45fe51ee821e4c6652dfd2cf Mon Sep 17 00:00:00 2001 From: Eli Grey Date: Mon, 1 Aug 2011 20:31:38 -0400 Subject: [PATCH] s/WebKit/Google Chrome/ on the Chrome issue comment --- FileSaver.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FileSaver.js b/FileSaver.js index f0a61d7..e2241a7 100644 --- a/FileSaver.js +++ b/FileSaver.js @@ -79,8 +79,8 @@ var saveAs = saveAs || (function(view) { if (!name) { name = "download"; } - // Object and web filesystem URLs have a problem saving in WebKit when viewed - // in a tab, so I force object URLs to save with application/octet-stream + // Object and web filesystem URLs have a problem saving in Google Chrome when + // viewed in a tab, so I force save with application/octet-stream // http://code.google.com/p/chromium/issues/detail?id=91158 if (view.chrome && type !== force_saveable_type) { slice = blob.slice || blob.webkitSlice;