fix: downloadText() method to accommodate .md file format
This commit is contained in:
parent
a0e42aae9e
commit
7c7b5abad3
1 changed files with 2 additions and 1 deletions
|
@ -3831,7 +3831,8 @@ jQuery.PrivateBin = (function($, RawDeflate) {
|
|||
*/
|
||||
function downloadText()
|
||||
{
|
||||
var filename='paste-' + Model.getPasteId() + '.txt';
|
||||
var fileFormat = PasteViewer.getFormat() === 'markdown' ? '.md' : '.txt';
|
||||
var filename='paste-' + Model.getPasteId() + fileFormat;
|
||||
var text = PasteViewer.getText();
|
||||
|
||||
var element = document.createElement('a');
|
||||
|
|
Loading…
Reference in a new issue