Skip to content

Commit

Permalink
Fix typo introduced in last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ferrybig committed May 20, 2017
1 parent 8a81b30 commit 9d99cab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spamtracker/spamtracker.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
/* global GM_info, Notification, GM_setValue, GM_getValue, unsafeWindow, GM_getResourceText, GM_getResourceURL */
/* eslint-disable prefer-const, no-use-before-define */

unsafeWindow.Spamtracker = (function (target, siterooms, window, orginalWindow) {
unsafeWindow.Spamtracker = (function (target, siterooms, window, originalWindow) {
"use strict";
const createDebug = typeof orginalWindow === "undefined" ? window.debug : orginalWindow.debug || window.debug;
const createDebug = typeof originalWindow === "undefined" ? window.debug : originalWindow.debug || window.debug;
const debug = createDebug("spamtracker:debug");
debug.warn = createDebug("spamtracker:warn");
debug.info = createDebug("spamtracker:info");
Expand Down

0 comments on commit 9d99cab

Please sign in to comment.