mirror of
https://github.com/flarum/framework.git
synced 2025-01-10 21:35:38 +08:00
13 lines
285 B
JavaScript
13 lines
285 B
JavaScript
|
import Ember from 'ember';
|
||
|
|
||
|
import ActionButton from 'flarum/components/ui/action-button';
|
||
|
|
||
|
export default ActionButton.extend({
|
||
|
title: 'Go to Top',
|
||
|
icon: 'arrow-up',
|
||
|
className: 'control-top',
|
||
|
action: function() {
|
||
|
$('html, body').stop(true).animate({scrollTop: 0});
|
||
|
}
|
||
|
})
|