Hide the 'Load More' button while loading
authorChip Black <bytex64@bytex64.net>
Tue, 7 Aug 2012 06:41:22 +0000 (23:41 -0700)
committerChip Black <bytex64@bytex64.net>
Tue, 7 Aug 2012 06:41:22 +0000 (23:41 -0700)
www/jssrc/blerg/User.js

index 57366fb..992b53f 100644 (file)
@@ -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) {