ckeditor.language.admin.es6.js 415 B

1234567891011121314
  1. (function($, Drupal) {
  2. /**
  3. * Provides the summary for the "language" plugin settings vertical tab.
  4. */
  5. Drupal.behaviors.ckeditorLanguageSettingsSummary = {
  6. attach() {
  7. $('#edit-editor-settings-plugins-language').drupalSetSummary(context =>
  8. $(
  9. '#edit-editor-settings-plugins-language-language-list-type option:selected',
  10. ).text(),
  11. );
  12. },
  13. };
  14. })(jQuery, Drupal);