Skip to content
Browse files

Merge pull request #6433 from FreeCodeCamp/fix/eslint-errrors

Fix eslint errors
  • Loading branch information...
2 parents d3ed4f4 + af52c43 commit ea7a69585299799e2682ad3f5c9a4a6c3a47af78 @ltegman ltegman committed
Showing with 4 additions and 3 deletions.
  1. +4 −3 client/main.js
View
7 client/main.js
@@ -4,7 +4,8 @@ main.mapShareKey = 'map-shares';
main.ga = window.ga || function() {};
-main = (function(main) {
+main = (function(main, global) {
+ const { Mousetrap } = global;
// should be set before gitter script loads
((window.gitter = {}).chat = {}).options = {
@@ -120,7 +121,7 @@ main = (function(main) {
});
return main;
-}(main));
+}(main, window));
var lastCompleted = typeof lastCompleted !== 'undefined' ?
lastCompleted :
@@ -386,7 +387,7 @@ $(document).ready(function() {
});
// keyboard shortcuts: open map
- Mousetrap.bind('g m', function() {
+ window.Mousetrap.bind('g m', function() {
var isCollapsed = $('.map-aside').hasClass('is-collapsed');
if (isCollapsed) {

0 comments on commit ea7a695

Please sign in to comment.
Something went wrong with that request. Please try again.