Add some resizes
This commit is contained in:
parent
5a302271b3
commit
f5c7be7d35
1 changed files with 2 additions and 0 deletions
|
@ -28,10 +28,12 @@ var Whisper = Whisper || {};
|
||||||
},
|
},
|
||||||
scrollToBottom: function() {
|
scrollToBottom: function() {
|
||||||
// TODO: Avoid scrolling if user has manually scrolled up?
|
// TODO: Avoid scrolling if user has manually scrolled up?
|
||||||
|
this.resize();
|
||||||
this.$el.scrollTop(this.el.scrollHeight);
|
this.$el.scrollTop(this.el.scrollHeight);
|
||||||
},
|
},
|
||||||
addAll: function() {
|
addAll: function() {
|
||||||
Whisper.ListView.prototype.addAll.apply(this, arguments); // super()
|
Whisper.ListView.prototype.addAll.apply(this, arguments); // super()
|
||||||
|
this.resize();
|
||||||
this.scrollToBottom();
|
this.scrollToBottom();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue