ckeditor.language.admin.js 481 B

12345678910111213141516
  1. /**
  2. * DO NOT EDIT THIS FILE.
  3. * See the following change record for more information,
  4. * https://www.drupal.org/node/2815083
  5. * @preserve
  6. **/
  7. (function ($, Drupal) {
  8. Drupal.behaviors.ckeditorLanguageSettingsSummary = {
  9. attach: function attach() {
  10. $('#edit-editor-settings-plugins-language').drupalSetSummary(function (context) {
  11. return $('#edit-editor-settings-plugins-language-language-list-type option:selected').text();
  12. });
  13. }
  14. };
  15. })(jQuery, Drupal);