Ver código fonte

210816 hr bug fix

yukyo0821 3 anos atrás
pai
commit
7b6ea60735
1 arquivos alterados com 3 adições e 2 exclusões
  1. 3 2
      backstage/static/js/editor.js

+ 3 - 2
backstage/static/js/editor.js

@@ -84,7 +84,7 @@ axios.get(contentApiUrl).then(({ data }) => {
     }
     else if (blocks[i]['type'] == "hr") {
       //alert('yo');
-      editorBlocks.push({ type: "paragraph", data: { text: "<hr>" } });
+      editorBlocks.push({ type: "paragraph", data: { text: "---" } });
     }
     else if (blocks[i]['type'] == "mt5") {
       //alert('yo');
@@ -177,7 +177,7 @@ submitButton.onclick = function () {
     mdContent += 'type: "' + $('#ctype').val() + '"\n';
     mdContent += 'url: "' + $('#curl').val() + '"\n';
     mdContent += 'image: "' + $('#cimage').val() + '"\n';
-    mdContent += 'description: "' + $('#cdescription').val().replace(/\r?\n/g,'<br>') + '"\n';
+    mdContent += 'description: "' + $('#cdescription').val().replace(/\r?\n/g, '<br>') + '"\n';
     mdContent += 'weight: ' + ($('#cweight').val() == 'undefined' ? "" : $('#cweight').val()) + '\n';
     mdContent += 'tag: "' + ($('#ctag').val() == 'undefined' ? "" : $('#ctag').val()) + '"\n';
     mdContent += '---\n\n';
@@ -192,6 +192,7 @@ submitButton.onclick = function () {
         mdContent += '\n' + block.data.text + '\n';
       }
       else if (block.type == "hr") {
+        //alert('hr');
         mdContent += '\n---\n';
       }
       else if (block.type == "image") {