mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
663160c06a
renamed NzbDrone.Backbone to UI
24 lines
587 B
JavaScript
24 lines
587 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: {
|
|
switch: '.switch',
|
|
tooltip: '[class^="help-inline"] i'
|
|
},
|
|
|
|
onRender: function () {
|
|
NzbDrone.ModelBinder.bind(this.model, this.el);
|
|
this.ui.switch.bootstrapSwitch();
|
|
this.ui.tooltip.tooltip({ placement: 'right', html: true });
|
|
}
|
|
});
|
|
});
|