Procházet zdrojové kódy

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

Adarsh Ashokan před 2 roky
rodič
revize
7c7b5abad3
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      js/privatebin.js

+ 2 - 1
js/privatebin.js

@@ -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');