mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-17 10:45:49 +02:00
12 lines
271 B
JavaScript
12 lines
271 B
JavaScript
"use strict";
|
|
define(['app'], function () {
|
|
|
|
NzbDrone.Shared.Toolbar.ToolbarModel = Backbone.Model.extend({
|
|
|
|
defaults: {
|
|
"route" : '/nzbdrone/route',
|
|
"title" : 'Title Goes Here',
|
|
"tooltip": undefined
|
|
}
|
|
});
|
|
}); |