2013-03-04 00:09:43 +00:00
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
define([
|
|
|
|
|
'app', 'Settings/SettingsModel'
|
|
|
|
|
|
|
|
|
|
], function () {
|
|
|
|
|
|
|
|
|
|
NzbDrone.Settings.Naming.NamingView = Backbone.Marionette.ItemView.extend({
|
|
|
|
|
template: 'Settings/Naming/NamingTemplate',
|
2013-03-04 02:02:57 +00:00
|
|
|
|
className: 'form-horizontal',
|
2013-03-04 00:09:43 +00:00
|
|
|
|
|
2013-03-05 06:50:42 +00:00
|
|
|
|
ui: {
|
|
|
|
|
switch: '.switch',
|
2013-03-06 18:41:13 +00:00
|
|
|
|
tooltip: '[class^="help-inline"] i'
|
2013-03-04 00:09:43 +00:00
|
|
|
|
},
|
|
|
|
|
|
2013-03-07 08:01:18 +00:00
|
|
|
|
initialize: function(){
|
|
|
|
|
//Listen to save event
|
|
|
|
|
},
|
|
|
|
|
|
2013-03-04 00:09:43 +00:00
|
|
|
|
onRender: function () {
|
|
|
|
|
NzbDrone.ModelBinder.bind(this.model, this.el);
|
2013-03-05 06:50:42 +00:00
|
|
|
|
this.ui.switch.bootstrapSwitch();
|
|
|
|
|
this.ui.tooltip.tooltip({ placement: 'right' });
|
2013-03-04 00:09:43 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|