Fixed some UI issues

Fixed: Add folder won't show loading when there aren't any folders
pull/35/head
Mark McDowall 11 years ago
parent aa26d68f18
commit f14fff676e

@ -37,7 +37,10 @@ define(
initialize: function () {
QualityProfileCollection.fetch();
RootFolderCollection.fetch();
RootFolderCollection.fetch()
.done(function () {
RootFolderCollection.synced = true;
});
},
onShow: function () {

@ -37,7 +37,7 @@ define(
onRender: function () {
this.currentDirs.show(new LoadingView());
if (RootFolderCollection.any()) {
if (RootFolderCollection.synced) {
this._showCurrentDirs();
}

@ -43,7 +43,7 @@ define(
}
});
CommandCollection.bind('add sync', function () {
CommandCollection.bind('sync', function () {
var command = CommandCollection.findCommand(options.command);
if (command) {
self._bindToCommandModel.call(self, command, options);

Loading…
Cancel
Save