mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 01:27:00 +00:00
13 lines
316 B
JavaScript
13 lines
316 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'backbone'
|
|
], function (Backbone) {
|
|
return Backbone.Model.extend({
|
|
defaults: {
|
|
'target' : '/nzbdrone/route',
|
|
'title' : '',
|
|
'active' : false,
|
|
'tooltip': undefined }
|
|
});
|
|
});
|