1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Settings/Misc/MiscView.js

21 lines
447 B
JavaScript
Raw Normal View History

2013-03-04 03:09:43 +03:00
'use strict';
define([
'app', 'Settings/SettingsModel'
2013-03-04 03:09:43 +03:00
], function () {
NzbDrone.Settings.Misc.MiscView = Backbone.Marionette.ItemView.extend({
template : 'Settings/Misc/MiscTemplate',
2013-03-18 18:25:36 +03:00
className: 'form-horizontal',
ui: {
tooltip: '[class^="help-inline"] i'
},
2013-03-04 03:09:43 +03:00
onRender: function () {
2013-03-18 18:25:36 +03:00
this.ui.tooltip.tooltip({ placement: 'right', html: true });
2013-03-04 03:09:43 +03:00
}
});
});