mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 17:57:43 +00:00
Added path autocomplete to download client settings
This commit is contained in:
parent
76b8b006fa
commit
15bbeb9270
4 changed files with 7 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
|||
'use strict;'
|
||||
|
||||
define(['app', 'AddSeries/RootFolders/RootFolderCollection', 'Shared/AutoComplete'], function (app,rootFolders) {
|
||||
define(['app', 'AddSeries/RootFolders/RootFolderCollection', 'Mixins/AutoComplete'], function (app,rootFolders) {
|
||||
|
||||
|
||||
NzbDrone.AddSeries.RootFolderItemView = Backbone.Marionette.ItemView.extend({
|
||||
|
|
|
@ -15,11 +15,10 @@
|
|||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<!--Todo: This should auto-complete-->
|
||||
<div class="control-group">
|
||||
<label class="control-label">Unsorted TV Directory</label>
|
||||
<div class="controls">
|
||||
<input type="text" placeholder="C:\Unsorted TV" name="downloadClientDropDirectory" />
|
||||
<input type="text" placeholder="C:\Unsorted TV" name="downloadClientDropDirectory" class="x-path" />
|
||||
<span class="help-inline">
|
||||
<i class="icon-question-sign" title="The directory where your download client downloads TV shows to."></i>
|
||||
</span>
|
||||
|
@ -159,11 +158,10 @@
|
|||
|
||||
<fieldset>
|
||||
<legend>Blackhole</legend>
|
||||
<!--Todo: This should auto-complete-->
|
||||
<div class="control-group">
|
||||
<label class="control-label">Blackhole Directory</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="blackholeDirectory" />
|
||||
<input type="text" name="blackholeDirectory" class="x-path" />
|
||||
<span class="help-inline">
|
||||
<i class="icon-question-sign" title="The directory where your download client will pickup .nzb files"></i>
|
||||
</span>
|
||||
|
@ -173,11 +171,10 @@
|
|||
|
||||
<fieldset>
|
||||
<legend>Pneumatic</legend>
|
||||
<!--Todo: This should auto-complete-->
|
||||
<div class="control-group">
|
||||
<label class="control-label">Nzb Directory</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="pneumaticDirectory" />
|
||||
<input type="text" name="pneumaticDirectory" class="x-path" />
|
||||
<span class="help-inline">
|
||||
<i class="icon-question-sign" title="Directory to save NZBs for Pneumatic<br/>must be accessible from XBMC"></i>
|
||||
</span>
|
||||
|
|
|
@ -11,13 +11,15 @@ define([
|
|||
|
||||
ui: {
|
||||
switch: '.switch',
|
||||
tooltip: '[class^="help-inline"] i'
|
||||
tooltip: '[class^="help-inline"] i',
|
||||
pathInput: '.x-path'
|
||||
},
|
||||
|
||||
onRender: function () {
|
||||
NzbDrone.ModelBinder.bind(this.model, this.el);
|
||||
this.ui.switch.bootstrapSwitch();
|
||||
this.ui.tooltip.tooltip({ placement: 'right', html: true });
|
||||
this.ui.pathInput.autoComplete('/directories');
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue