Skip to content

Commit

Permalink
Corrige l'affichage de l'avertissement de l'éditeur (#6562)
Browse files Browse the repository at this point in the history
  • Loading branch information
Situphen authored Dec 29, 2023
1 parent e0e78e2 commit 5be3946
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions assets/js/editor-new.js
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,7 @@
]
})

if (smdeUniqueContent != null && localStorage['smde_' + mdeUniqueKey] !== textarea.value) {
if (smdeUniqueContent != null && localStorage['smde_' + mdeUniqueKey] !== textarea.defaultValue) {
const $alertbox = $('<div class="alert-box info"></div>')

const $hide = $("<a>Masquer l'alerte</a>")
Expand All @@ -961,7 +961,7 @@
})

const $undo = $('<a href="javascript:void(0)">cliquant ici</a>.').click(function() {
window.editors[textarea.id].value(textarea.value)
window.editors[textarea.id].value(textarea.defaultValue)
easyMDE.codemirror.off('keyHandled', onKeyHandled)
localStorage.removeItem('smde_' + mdeUniqueKey)
$alertbox.hide(() => $(this).remove())
Expand All @@ -984,7 +984,7 @@

const spanContent = [
'La version actuelle du contenu provient d\'une sauvegarde de votre navigateur. ',
'Vous pouvez revenir à la version originale (du serveur) avec CTRL+Z ou en ',
'Vous pouvez revenir à la version originale (du serveur) en ',
$undo,
'.'
]
Expand All @@ -994,7 +994,7 @@
.appendTo($alertbox)
.after($hide)

$(easyMDE.element.parentElement).children('.editor-toolbar').before($alertbox)
formEditor.find('.editor-toolbar').before($alertbox)
}

window.editors[this.id] = easyMDE
Expand Down

0 comments on commit 5be3946

Please sign in to comment.