From 43756ec8b69e5546c4e668b271eeb2bff0d77329 Mon Sep 17 00:00:00 2001 From: Kane York Date: Mon, 3 Aug 2015 15:19:31 -0700 Subject: [PATCH] Adjust styling of download results --- assets/javascripts/discourse/components/query-result.js.es6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/javascripts/discourse/components/query-result.js.es6 b/assets/javascripts/discourse/components/query-result.js.es6 index 3b05ab8..760b5a2 100644 --- a/assets/javascripts/discourse/components/query-result.js.es6 +++ b/assets/javascripts/discourse/components/query-result.js.es6 @@ -104,7 +104,7 @@ const QueryResultComponent = Ember.Component.extend({ // Create a frame to submit the form in (?) // to avoid leaving an about:blank behind let windowName = randomIdShort(); - const newWindowContents = "Click anywhere to close this window once the download finishes."; + const newWindowContents = "Click anywhere to close this window once the download finishes."; let newWindow = window.open('data:text/html;base64,' + btoa(newWindowContents), windowName);