Add 'formattedtext' output type to Wikify widget

This commit is contained in:
Jermolene
2016-10-18 09:13:52 +01:00
parent 2f590a365e
commit d9f301f755
2 changed files with 9 additions and 4 deletions
+3
View File
@@ -71,6 +71,9 @@ WikifyWidget.prototype.getResult = function() {
case "text":
result = this.wikifyContainer.textContent;
break;
case "formattedtext":
result = this.wikifyContainer.formattedTextContent;
break;
case "html":
result = this.wikifyContainer.innerHTML;
break;