mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-18 23:48:35 +02:00
10 lines
244 B
JavaScript
10 lines
244 B
JavaScript
'use strict';
|
|
define(['app', 'Shared/Toolbar/Button/ButtonView', 'Config'], function (App, ButtonView, Config) {
|
|
return Backbone.Marionette.CollectionView.extend({
|
|
className: 'btn-group',
|
|
itemView : ButtonView
|
|
});
|
|
});
|
|
|
|
|