Issue #2317821 by Wim Leers, nod_ | wwalc: Do not show a dialog about changing formats when there is no content.

8.0.x
Alex Pott 2014-08-18 14:51:48 +01:00
parent 3c29af9715
commit 34c75100e8
1 changed files with 4 additions and 1 deletions

View File

@ -73,7 +73,10 @@
// with it that supports content filtering, then first ask for // with it that supports content filtering, then first ask for
// confirmation, because switching text formats might cause certain // confirmation, because switching text formats might cause certain
// markup to be stripped away. // markup to be stripped away.
if (drupalSettings.editor.formats[newFormatID] && drupalSettings.editor.formats[newFormatID].editorSupportsContentFiltering) { var supportContentFiltering = drupalSettings.editor.formats[newFormatID] && drupalSettings.editor.formats[newFormatID].editorSupportsContentFiltering;
// If there is no content yet, it's always safe to change the text format.
var hasContent = findFieldForFormatSelector($select).value !== '';
if (hasContent && supportContentFiltering) {
var message = Drupal.t('Changing the text format to %text_format will permanently remove content that is not allowed in that text format.<br><br>Save your changes before switching the text format to avoid losing data.', { var message = Drupal.t('Changing the text format to %text_format will permanently remove content that is not allowed in that text format.<br><br>Save your changes before switching the text format to avoid losing data.', {
'%text_format': $select.find('option:selected').text() '%text_format': $select.find('option:selected').text()
}); });