Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/df1cb91a84dfab124f968020ad0e004eaedc39c7?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Added loading to recent folder list

pull/6/head
Mark McDowall 12 years ago
parent 040bfb08ce
commit df1cb91a84

@ -38,7 +38,7 @@ define(
SeriesCollection.fetch();
QualityProfileCollection.fetch();
RootFolderCollection.fetch();
RootFolderCollection.promise = RootFolderCollection.fetch();
},
onShow: function () {

@ -32,8 +32,12 @@ define(
},
onRender: function () {
var self = this;
RootFolderCollection.promise.done(function () {
self.currentDirs.show(self.rootfolderListView);
});
this.currentDirs.show(this.rootfolderListView);
this.ui.pathInput.autoComplete('/directories');
},

@ -11,7 +11,7 @@
{{#if items}}
<h4>Recent Folders</h4>
{{/if}}
<div id="current-dirs" class="root-folders-list"></div>
<div id="current-dirs" class="root-folders-list">loading ...</div>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal">close</button>

Loading…
Cancel
Save