Chris@0: /** Chris@0: * DO NOT EDIT THIS FILE. Chris@0: * See the following change record for more information, Chris@0: * https://www.drupal.org/node/2815083 Chris@0: * @preserve Chris@0: **/ Chris@0: Chris@0: (function (Drupal) { Chris@0: Drupal.theme.quickeditImageErrors = function (settings) { Chris@0: return '
' + settings.errors + '
'; Chris@0: }; Chris@0: Chris@0: Drupal.theme.quickeditImageDropzone = function (settings) { Chris@0: return '
' + ' ' + (' ' + settings.text + '') + '
'; Chris@0: }; Chris@0: Chris@0: Drupal.theme.quickeditImageToolbar = function (settings) { Chris@0: var html = '
'; Chris@0: if (settings.alt_field) { Chris@17: html += '
' + ('') + '
'; Chris@0: } Chris@0: if (settings.title_field) { Chris@17: html += '
' + ('') + '
'; Chris@0: } Chris@0: html += '
'; Chris@0: Chris@0: return html; Chris@0: }; Chris@0: })(Drupal);