diff options
author | liabru <liabru@brm.io> | 2015-11-14 16:44:22 +0000 |
---|---|---|
committer | liabru <liabru@brm.io> | 2015-11-14 16:44:22 +0000 |
commit | 0165e749544ca7847c78df28c9a2fb89a63dd1ee (patch) | |
tree | 0f6558404dda84577470ecbe876d3ad85b910923 | |
parent | b5988c1e49aae9a940fc20d198c5ad09937e18cf (diff) | |
download | jquery-match-height-0165e749544ca7847c78df28c9a2fb89a63dd1ee.zip jquery-match-height-0165e749544ca7847c78df28c9a2fb89a63dd1ee.tar.gz jquery-match-height-0165e749544ca7847c78df28c9a2fb89a63dd1ee.tar.bz2 |
fix linter issues
-rw-r--r-- | .eslintrc | 4 | ||||
-rw-r--r-- | jquery.matchHeight.js | 4 |
2 files changed, 5 insertions, 3 deletions
@@ -18,8 +18,10 @@ ] }, "env": { + "node": true, "browser": true, - "jquery": true + "jquery": true, + "amd": true }, "extends": "eslint:recommended" }
\ No newline at end of file diff --git a/jquery.matchHeight.js b/jquery.matchHeight.js index 41ea591..e714cf9 100644 --- a/jquery.matchHeight.js +++ b/jquery.matchHeight.js @@ -4,7 +4,7 @@ * License: MIT */ -;(function(factory) { +;(function(factory) { // eslint-disable-line no-extra-semi 'use strict'; if (typeof define === 'function' && define.amd) { // AMD @@ -16,7 +16,7 @@ // Global factory(jQuery); } -})(function($) { // eslint-disable-line no-extra-semi +})(function($) { /* * internal */ |