Skip to content

Commit

Permalink
Merge pull request #5454 from Snuffleupagus/debugger-font-download
Browse files Browse the repository at this point in the history
Fix regression that prevents downloading of font files in the debugger
  • Loading branch information
yurydelendik committed Oct 30, 2014
2 parents a737e5b + 4ed3074 commit 308646d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/debugger.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ var FontInspector = (function FontInspectorClosure() {
url = URL.createObjectURL(new Blob([fontObj.data], {
type: fontObj.mimeType
}));
download.href = url;
}
download.href = url;
download.textContent = 'Download';
var logIt = document.createElement('a');
logIt.href = '';
Expand Down

0 comments on commit 308646d

Please sign in to comment.