You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/UI/Settings/Misc/MiscView.js

21 lines
447 B

12 years ago
'use strict';
define([
'app', 'Settings/SettingsModel'
12 years ago
], function () {
NzbDrone.Settings.Misc.MiscView = Backbone.Marionette.ItemView.extend({
template : 'Settings/Misc/MiscTemplate',
12 years ago
className: 'form-horizontal',
ui: {
tooltip: '[class^="help-inline"] i'
},
12 years ago
onRender: function () {
12 years ago
this.ui.tooltip.tooltip({ placement: 'right', html: true });
12 years ago
}
});
});