31 lines
1.5 KiB
JavaScript
31 lines
1.5 KiB
JavaScript
/**
|
|
* DO NOT EDIT THIS FILE.
|
|
* See the following change record for more information,
|
|
* https://www.drupal.org/node/2815083
|
|
* @preserve
|
|
**/
|
|
|
|
(function (Drupal) {
|
|
Drupal.theme.quickeditImageErrors = function (settings) {
|
|
return "<div class=\"quickedit-image-errors\">".concat(settings.errors, "</div>");
|
|
};
|
|
|
|
Drupal.theme.quickeditImageDropzone = function (settings) {
|
|
return "<div class=\"quickedit-image-dropzone ".concat(settings.state, "\">") + ' <i class="quickedit-image-icon"></i>' + " <span class=\"quickedit-image-text\">".concat(settings.text, "</span>") + '</div>';
|
|
};
|
|
|
|
Drupal.theme.quickeditImageToolbar = function (settings) {
|
|
var html = '<form class="quickedit-image-field-info">';
|
|
|
|
if (settings.alt_field) {
|
|
html += "<div><label for=\"alt\" class=\"".concat(settings.alt_field_required ? 'required' : '', "\">").concat(Drupal.t('Alternative text'), "</label>") + "<input type=\"text\" placeholder=\"".concat(settings.alt, "\" value=\"").concat(settings.alt, "\" name=\"alt\" ").concat(settings.alt_field_required ? 'required' : '', "/>") + ' </div>';
|
|
}
|
|
|
|
if (settings.title_field) {
|
|
html += "<div><label for=\"title\" class=\"".concat(settings.title_field_required ? 'form-required' : '', "\">").concat(Drupal.t('Title'), "</label>") + "<input type=\"text\" placeholder=\"".concat(settings.title, "\" value=\"").concat(settings.title, "\" name=\"title\" ").concat(settings.title_field_required ? 'required' : '', "/>") + '</div>';
|
|
}
|
|
|
|
html += '</form>';
|
|
return html;
|
|
};
|
|
})(Drupal); |