Fix eslint

This commit is contained in:
Annabel Dunstone Gray 2017-07-18 16:40:50 -05:00
parent b4b5ad3993
commit 49ee81ca12
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,8 @@ import NewNavSidebar from './new_sidebar';
}
$(() => {
new NewNavSidebar();
var newNavSidebar = new NewNavSidebar();
newNavSidebar.bindEvents();
$(window).on('scroll', _.throttle(applyScrollNavClass, 100));
});
}).call(window);

View File

@ -1,7 +1,6 @@
export default class NewNavSidebar {
constructor() {
this.initDomElements();
this.bindEvents();
}
initDomElements() {