Kaynağa Gözat

fix: downloadText() method to accommodate .md file format

Adarsh Ashokan 2 yıl önce
ebeveyn
işleme
7c7b5abad3
1 değiştirilmiş dosya ile 2 ekleme ve 1 silme
  1. 2 1
      js/privatebin.js

+ 2 - 1
js/privatebin.js

@@ -3831,7 +3831,8 @@ jQuery.PrivateBin = (function($, RawDeflate) {
          */
          */
         function downloadText()
         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 text = PasteViewer.getText();
 
 
             var element = document.createElement('a');
             var element = document.createElement('a');