mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
14 lines
387 B
JavaScript
14 lines
387 B
JavaScript
|
Discourse.AdminFlagsView = Discourse.View.extend(Discourse.LoadMore, {
|
||
|
loading: false,
|
||
|
eyelineSelector: '.admin-flags tbody tr',
|
||
|
loadMore: function() {
|
||
|
var view = this;
|
||
|
if(this.get("loading") || this.get("model.allLoaded")) { return; }
|
||
|
this.set("loading", true);
|
||
|
this.get("controller").loadMore().then(function(){
|
||
|
view.set("loading", false);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
});
|