Skip to content

Commit ba6320f

Browse files
committed
changes tweak
1 parent 12c6587 commit ba6320f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/inlineMarkdownEditor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10302,7 +10302,7 @@ module.exports = function onComplete(response, markdown, html, el, uniqueId, for
1030210302
if (response === 'true' || response === true) {
1030310303
var message = $('#' + uniqueId + ' .section-message');
1030410304
message.html('<i class="fa fa-check" style="color:green;"></i>');
10305-
markdown = changes;
10305+
//markdown = changes;
1030610306
$('#' + uniqueId + ' textarea').val('');
1030710307
form.hide();
1030810308
// replace the section but reset our html and markdown

src/onComplete.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = function onComplete(response, markdown, html, el, uniqueId, for
22
if (response === 'true' || response === true) {
33
var message = $('#' + uniqueId + ' .section-message');
44
message.html('<i class="fa fa-check" style="color:green;"></i>');
5-
markdown = changes;
5+
//markdown = changes;
66
$('#' + uniqueId + ' textarea').val('');
77
form.hide();
88
// replace the section but reset our html and markdown

0 commit comments

Comments
 (0)