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