2013-03-04 01:09:43 +01:00
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
define([
|
|
|
|
|
'app', 'Settings/SettingsModel'
|
|
|
|
|
|
|
|
|
|
], function () {
|
|
|
|
|
|
|
|
|
|
NzbDrone.Settings.DownloadClient.DownloadClientView = Backbone.Marionette.ItemView.extend({
|
|
|
|
|
template: 'Settings/DownloadClient/DownloadClientTemplate',
|
2013-03-14 01:26:30 +01:00
|
|
|
|
className: 'form-horizontal',
|
|
|
|
|
|
|
|
|
|
ui: {
|
|
|
|
|
switch: '.switch',
|
2013-03-16 01:33:04 +01:00
|
|
|
|
tooltip: '[class^="help-inline"] i',
|
|
|
|
|
pathInput: '.x-path'
|
2013-03-14 01:26:30 +01:00
|
|
|
|
},
|
2013-03-04 01:09:43 +01:00
|
|
|
|
|
|
|
|
|
onRender: function () {
|
|
|
|
|
NzbDrone.ModelBinder.bind(this.model, this.el);
|
2013-03-14 01:26:30 +01:00
|
|
|
|
this.ui.switch.bootstrapSwitch();
|
|
|
|
|
this.ui.tooltip.tooltip({ placement: 'right', html: true });
|
2013-03-16 01:33:04 +01:00
|
|
|
|
this.ui.pathInput.autoComplete('/directories');
|
2013-03-04 01:09:43 +01:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|