mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
21 lines
447 B
JavaScript
21 lines
447 B
JavaScript
'use strict';
|
|
|
|
define([
|
|
'app', 'Settings/SettingsModel'
|
|
|
|
], function () {
|
|
|
|
NzbDrone.Settings.Misc.MiscView = Backbone.Marionette.ItemView.extend({
|
|
template : 'Settings/Misc/MiscTemplate',
|
|
className: 'form-horizontal',
|
|
|
|
ui: {
|
|
tooltip: '[class^="help-inline"] i'
|
|
},
|
|
|
|
onRender: function () {
|
|
this.ui.tooltip.tooltip({ placement: 'right', html: true });
|
|
}
|
|
});
|
|
});
|