1
0
mirror of https://github.com/flarum/core.git synced 2025-07-31 13:40:20 +02:00

Remove the go to top button

It’s not particularly useful when there are fixed elements all over the
page (header, sidebar)
This commit is contained in:
Toby Zerner
2015-02-13 09:46:22 +10:30
parent 681de4244b
commit fa3523ac74
2 changed files with 0 additions and 15 deletions

View File

@@ -1,12 +0,0 @@
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});
}
})