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

27 lines
606 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.Naming.NamingView = Backbone.Marionette.ItemView.extend({
template : 'Settings/Naming/NamingTemplate',
2013-03-04 05:02:57 +03:00
className: 'form-horizontal',
2013-03-04 03:09:43 +03:00
ui: {
bsSwitch : '.switch',
2013-03-06 21:41:13 +03:00
tooltip: '[class^="help-inline"] i'
2013-03-04 03:09:43 +03:00
},
initialize: function () {
//Listen to save event
},
2013-03-04 03:09:43 +03:00
onRender: function () {
this.ui.bsSwitch.bootstrapSwitch();
this.ui.tooltip.tooltip({ placement: 'right' });
2013-03-04 03:09:43 +03:00
}
});
});