mirror of
https://github.com/discourse/discourse.git
synced 2025-02-15 19:12:56 +08:00
9 lines
239 B
JavaScript
9 lines
239 B
JavaScript
Discourse.ScrollTop = Em.Mixin.create({
|
|
_scrollTop: function() {
|
|
if (Discourse.URL.isJumpScheduled()) { return; }
|
|
Em.run.schedule('afterRender', function() {
|
|
$(document).scrollTop(0);
|
|
});
|
|
}.on('didInsertElement')
|
|
});
|