Sha256: 09b3ed97080b4fbfe41e34f3dfe2edcc7a771fd4e71da1d082f870fcdb87494c
Contents?: true
Size: 848 Bytes
Versions: 62
Compression:
Stored size: 848 Bytes
Contents
// The editor for the AdminSets // Add search for user/group to the edit an admin set's participants page // Add search for thumbnail to the edit descriptions import Visibility from 'hyrax/admin/admin_set/visibility' import Participants from 'hyrax/admin/admin_set/participants' import ThumbnailSelect from 'hyrax/thumbnail_select' import tabifyForm from 'hyrax/tabbed_form' export default class { constructor(elem) { let url = window.location.pathname.replace('edit', 'files') this.thumbnailSelect = new ThumbnailSelect(url, elem.find('#admin_set_thumbnail_id')) let participants = new Participants(elem.find('#participants')) participants.setup() let visibilityTab = new Visibility(elem.find('#visibility')) visibilityTab.setup() tabifyForm(elem.find('form.edit_admin_set')) } }
Version data entries
62 entries across 62 versions & 1 rubygems