mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
769331d45d
single quotes
11 lines
255 B
JavaScript
11 lines
255 B
JavaScript
'use strict';
|
|
|
|
define(['app'], function () {
|
|
NzbDrone.Shared.LoadingView = Backbone.Marionette.ItemView.extend({
|
|
template : 'Shared/LoadingTemplate',
|
|
className: 'nz-loading row'
|
|
});
|
|
|
|
return NzbDrone.Shared.LoadingView;
|
|
});
|