Skip to content

Commit

Permalink
fix "back to top" arrow broken in FF45
Browse files Browse the repository at this point in the history
  • Loading branch information
jewel-andraia committed Mar 14, 2016
1 parent 0505461 commit defdd75
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/modules/pageNavigator.js
Expand Up @@ -2,13 +2,14 @@ addModule('pageNavigator', {
moduleName: 'Post Navigator',
category: 'Browsing',
description: 'Provides a post navigation tool to get you up and down the page',
go: function() {
beforeLoad: function() {
if ((this.isEnabled()) && (this.isMatchURL())) {
RESTemplates.load('pageNavigator-CSS', function(template) {
RESUtils.addCSS(template.text());
});

this._addElements();

RESUtils.init.await.beforeLoad('floater').done(this._addElements.bind(this));
}
},
_addElements: function () {
Expand Down

0 comments on commit defdd75

Please sign in to comment.