mirror of https://github.com/Radarr/Radarr
25 lines
576 B
JavaScript
25 lines
576 B
JavaScript
'use strict';
|
||
|
||
define(
|
||
[
|
||
'marionette',
|
||
'Mixins/AsModelBoundView',
|
||
'Mixins/AutoComplete',
|
||
'bootstrap'
|
||
], function (Marionette, AsModelBoundView) {
|
||
|
||
var view = Marionette.ItemView.extend({
|
||
template : 'Settings/DownloadClient/PneumaticViewTemplate',
|
||
|
||
ui: {
|
||
'pneumaticFolder': '.x-path'
|
||
},
|
||
|
||
onShow: function () {
|
||
this.ui.pneumaticFolder.autoComplete('/directories');
|
||
}
|
||
});
|
||
|
||
return AsModelBoundView.call(view);
|
||
});
|