class DiagramsForm extends KeyValueForm { constructor(name = 'diagrams-form', fields = []) { if (fields.length === 0) { fields = [ { label: LANG.plugins.diagrams.mediaSource, name: 'src' }, { type: 'select', 'label': LANG.plugins.diagrams.alignment, 'options': [ {name: 'alignment', value: 'left', label: LANG.plugins.diagrams.left}, {name: 'alignment', value: 'right', label: LANG.plugins.diagrams.right}, {name: 'alignment', value: 'center', label: LANG.plugins.diagrams.center} ] } ]; } super(name, fields); if (!this.instance) { // media manager const selectButton = jQuery('