Jelajahi Sumber

Supported another linefeeds.

Norio Suzuki 10 tahun lalu
induk
melakukan
009bfa0772
1 mengubah file dengan 2 tambahan dan 2 penghapusan
  1. 2 2
      resource/js/crowi-form.js

+ 2 - 2
resource/js/crowi-form.js

@@ -219,8 +219,8 @@ $(function() {
 
     var match = currentLine.text.match(/^(\s*(?:>|\-|\+|\*|\d+\.) (?:\[(?:x| )\] )?)/);
     if (match) {
-      if (pasteText.match(/\n/)) {
-        pasteText = pasteText.replace(/(\n)/g, "$1" + match[1]); // + ' ');
+      if (pasteText.match(/(?:\r\n|\r|\n)/)) {
+        pasteText = pasteText.replace(/(\r\n|\r|\n)/g, "$1" + match[1]);
       }
     }