commit:6d460ea60252c7bb6b567b06e4428e3e7986885e
author:Chip Black
committer:Chip Black
date:Mon Aug 6 23:41:22 2012 -0700
parents:0acf301e133966d8dee95a39528a94e806309256
Hide the 'Load More' button while loading
diff --git a/www/jssrc/blerg/User.js b/www/jssrc/blerg/User.js
line changes: +1/-0
index 57366fb..992b53f
--- a/www/jssrc/blerg/User.js
+++ b/www/jssrc/blerg/User.js
@@ -68,6 +68,7 @@ enyo.kind({
     },
     loadItems: function(from, to) {
         this.inherited(arguments);
+        this.$.loadMoreButton.hide();
         this.$.api.loadUserRecords(this.username, from, to);
     },
     itemsLoaded: function(inSender, inEvent) {