svoydom/public/assets/js/easymde.js

14 lines
265 B
JavaScript
Raw Normal View History

2023-05-17 09:57:20 +03:00
// npm package: easymde
// github link: https://github.com/Ionaru/easy-markdown-editor
$(function() {
'use strict';
/*easymde editor*/
if ($("#easyMdeExample").length) {
var easymde = new EasyMDE({
element: $("#easyMdeExample")[0]
});
}
});