Skip to content

Commit

Permalink
🐛 when pressing 'prev' button
Browse files Browse the repository at this point in the history
  • Loading branch information
math2001 committed Apr 12, 2017
1 parent 2c6d98c commit 5bdec06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions popup.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";

const DEV = true
const DEV = false

// insert only once listener.js
chrome.tabs.executeScript(null, {code: 'window.FontManager'}, function (results) {
Expand Down Expand Up @@ -122,7 +122,7 @@ class App {
bindDOM() {
this.next.addEventListener('click', this.nextFont.bind(this))

this.prev.addEventListener('click', e => this.prevFont.bind(this))
this.prev.addEventListener('click', this.prevFont.bind(this))

this.filtersForm.addEventListener('change', e => {

Expand Down

0 comments on commit 5bdec06

Please sign in to comment.