From e7758442352cb0e67403c1b5caefcc800d46490c Mon Sep 17 00:00:00 2001 From: Rene Saarsoo Date: Thu, 27 Sep 2012 18:09:26 +0300 Subject: [PATCH] Hide the spinning loader when no comments on item. --- template/app/view/comments/List.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/template/app/view/comments/List.js b/template/app/view/comments/List.js index a3da3621..1985a898 100644 --- a/template/app/view/comments/List.js +++ b/template/app/view/comments/List.js @@ -77,6 +77,11 @@ Ext.define('Docs.view.comments.List', { * @param {Object[]} comments */ load: function(comments) { + // hide the spinning loader when no comments. + if (comments.length === 0) { + this.emptyText = ""; + } + this.store.loadData(comments); }, -- GitLab