mirror of https://github.com/lidarr/Lidarr
11 lines
215 B
JavaScript
11 lines
215 B
JavaScript
|
"use strict";
|
|||
|
|
|||
|
define(['app'], function () {
|
|||
|
NzbDrone.Shared.LoadingView = Backbone.Marionette.ItemView.extend({
|
|||
|
template : 'Shared/LoadingTemplate',
|
|||
|
className: 'nz-loading row'
|
|||
|
});
|
|||
|
});
|
|||
|
|
|||
|
|