diff options
author | liabru <liabru@brm.io> | 2015-03-31 01:31:25 +0100 |
---|---|---|
committer | liabru <liabru@brm.io> | 2015-03-31 01:31:25 +0100 |
commit | 290dfcf7fb10382348007cac78871e3e85e46f8e (patch) | |
tree | 3c356e2081364f20252e57b5a9612071e0678ed7 /jquery.matchHeight.js | |
parent | a30551fc1127309c38ccb0de97e8ac303669c82c (diff) | |
download | jquery-match-height-290dfcf7fb10382348007cac78871e3e85e46f8e.zip jquery-match-height-290dfcf7fb10382348007cac78871e3e85e46f8e.tar.gz jquery-match-height-290dfcf7fb10382348007cac78871e3e85e46f8e.tar.bz2 |
fix typo in target option, closes #63
Diffstat (limited to 'jquery.matchHeight.js')
-rw-r--r-- | jquery.matchHeight.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jquery.matchHeight.js b/jquery.matchHeight.js index 25d0e6a..552cf5f 100644 --- a/jquery.matchHeight.js +++ b/jquery.matchHeight.js @@ -111,7 +111,7 @@ return this;
}
- if (this.length <= 1 && !options.target) {
+ if (this.length <= 1 && !opts.target) {
return this;
}
|