1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-02 13:14:58 +00:00
Sonarr/UI/Shared/Toolbar/Button/ButtonCollectionView.js

13 lines
278 B
JavaScript

'use strict';
define(
[
'marionette',
'Shared/Toolbar/Button/ButtonView'
], function (Marionette, ButtonView) {
return Marionette.CollectionView.extend({
className: 'btn-group',
itemView : ButtonView
});
});