pressing enter makes new paragraph after image/video
[fnpeditor.git] / src / editor / plugins / core / core.js
index bc41e00..7feb1a4 100644 (file)
@@ -317,6 +317,13 @@ plugin.documentExtension.documentNode.transformations = {
             }
         });
         return toret;
+    },
+    insertNewNode: function () {
+        var node = this;
+        var newElement = this.document.createDocumentNode({tagName: 'div', attrs: {class: 'p'}});
+        node.after(newElement);
+        newElement.append({text: ''});
+        return newElement;
     }
 };