2016-05-12 16:20:47 +02:00
|
|
|
function myPreviewRender (text) {
|
|
|
|
text = text.replace(/[\u00A0-\u9999<>\&]/gim, function(i) {
|
|
|
|
return '&#'+i.charCodeAt(0)+';';
|
|
|
|
});
|
|
|
|
text = SimpleMDE.prototype.markdown(text);
|
|
|
|
text = text.replace(/ /g, ' ');
|
|
|
|
|
|
|
|
return text;
|
|
|
|
};
|
|
|
|
|
|
|
|
function MDEWrapper(textarea, enableButton, disableButton) {
|
|
|
|
this.element = textarea;
|
|
|
|
this.enableButton = enableButton;
|
|
|
|
this.disableButton = disableButton;
|
|
|
|
this.simplemde = null;
|
|
|
|
|
|
|
|
var wrapper = this;
|
|
|
|
|
|
|
|
if (this.enableButton) {
|
|
|
|
this.enableButton.on('click', function() {wrapper.enable()});
|
|
|
|
}
|
|
|
|
if (this.disableButton) {
|
|
|
|
this.disableButton.on('click', function() {wrapper.disable()});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MDEWrapper.prototype.enable = function() {
|
|
|
|
var wrapper = this;
|
|
|
|
if (this.simplemde == null) {
|
|
|
|
this.simplemde = new SimpleMDE({
|
|
|
|
element: wrapper.element,
|
|
|
|
forceSync: true,
|
|
|
|
status: true,
|
|
|
|
previewRender: myPreviewRender,
|
2016-05-12 17:57:53 +02:00
|
|
|
spellChecker: false,
|
2018-04-15 12:14:28 +02:00
|
|
|
promptURLs: true,
|
|
|
|
autoDownloadFontAwesome: false
|
2016-05-12 16:20:47 +02:00
|
|
|
});
|
|
|
|
if (this.enableButton) {
|
|
|
|
this.enableButton.addClass('active');
|
|
|
|
}
|
|
|
|
if (this.disableButton) {
|
|
|
|
this.disableButton.removeClass('active');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MDEWrapper.prototype.disable = function() {
|
|
|
|
if (this.simplemde != null) {
|
|
|
|
this.simplemde.toTextArea();
|
|
|
|
this.simplemde = null;
|
|
|
|
if (this.disableButton) {
|
|
|
|
this.disableButton.addClass('active');
|
|
|
|
}
|
|
|
|
if (this.enableButton) {
|
|
|
|
this.enableButton.removeClass('active');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MDEWrapper.prototype.isEnabled = function() {
|
|
|
|
return this.simplemde != null;
|
2018-04-15 12:14:28 +02:00
|
|
|
}
|