Sha256: 3647a28b19fb2d7e347a1848affdfa8170c5866f77ba45570c6e341c7c529797
Contents?: true
Size: 755 Bytes
Versions: 12
Compression:
Stored size: 755 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' 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(); } }
Version data entries
12 entries across 12 versions & 1 rubygems