mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
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/BlackholeViewTemplate',
|
|
|
|
ui: {
|
|
'blackholeFolder': '.x-path'
|
|
},
|
|
|
|
onShow: function () {
|
|
this.ui.blackholeFolder.autoComplete('/directories');
|
|
}
|
|
});
|
|
|
|
return AsModelBoundView.call(view);
|
|
});
|