mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 17:57:43 +00:00
15 lines
300 B
JavaScript
15 lines
300 B
JavaScript
"use strict";
|
|
|
|
define(
|
|
[
|
|
'app'
|
|
], function () {
|
|
NzbDrone.Shared.SpinnerView = Backbone.Marionette.ItemView.extend({
|
|
template : 'Shared/SpinnerTemplate',
|
|
className: 'nz-spinner row'
|
|
});
|
|
|
|
return NzbDrone.Shared.SpinnerView;
|
|
});
|
|
|
|
|