summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md20
-rw-r--r--package.json3
-rw-r--r--test/specs/matchHeight.spec.js4
3 files changed, 20 insertions, 7 deletions
diff --git a/README.md b/README.md
index 5a520c9..7ba9a3e 100644
--- a/README.md
+++ b/README.md
@@ -5,6 +5,9 @@ It handles many edge cases that cause similar plugins to fail.
[brm.io/jquery-match-height](http://brm.io/jquery-match-height/)
+[Demo](#demo) - [Features](#features) - [Gallery](#gallery) - [Install](#install) - [Usage](#usage) - [Options](#options) - [Data API](#data-api)
+[Advanced Usage](#advanced-usage) - [Tests](#tests) - [Known limitations](#known-limitations) - [Changelog](#changelog) - [License](#license)
+
[![](http://api.libscore.com/badge/$.fn.matchHeight.svg)](http://libscore.com#$.fn.matchHeight)
### Demo
@@ -32,11 +35,20 @@ See the [jquery.matchHeight.js demo](http://brm.io/jquery-match-height-demo).
- module loader support
- tested in IE8+, Chrome, Firefox, Safari, Android, iOS
-### Status
+### Gallery
+
+See how others are using jquery.matchHeight.js
-Current version is `0.6.0`.
-Use the master build for the latest features.
-Please report any [issues](https://github.com/liabru/jquery-match-height/issues) you find.
+- [Visa](https://www.visa.co.uk/)
+- [Nokia](http://www.nokia.com/)
+- [PayPal](https://www.paypal.com/)
+- [MTV](http://www.mtv.co.uk/)
+- [Bose](https://www.bose.com/)
+- [Chipotle](http://chipotle.com/)
+- [Fisher-Price](http://www.fisher-price.com/)
+- [Sega](http://sega.jp/)
+- [barackobama.com](https://www.barackobama.com/)
+- [more...](http://libscore.com#$.fn.matchHeight)
### Install
diff --git a/package.json b/package.json
index c50588d..278968a 100644
--- a/package.json
+++ b/package.json
@@ -25,9 +25,12 @@
"test": "gulp test"
},
"devDependencies": {
+ "async": "^1.5.0",
+ "connect-static-transform": "^0.8.0",
"gulp": "^3.9.0",
"gulp-browserstack": "^1.0.0",
"gulp-bump": "^1.0.0",
+ "gulp-conventional-changelog": "^0.7.0",
"gulp-eslint": "^1.0.0",
"gulp-header": "^1.7.1",
"gulp-rename": "^1.2.2",
diff --git a/test/specs/matchHeight.spec.js b/test/specs/matchHeight.spec.js
index 79a7714..4f34d00 100644
--- a/test/specs/matchHeight.spec.js
+++ b/test/specs/matchHeight.spec.js
@@ -41,8 +41,6 @@ describe('matchHeight', function() {
expect($.isFunction(matchHeight._update)).toBe(true);
expect($.isFunction(matchHeight._parse)).toBe(true);
expect($.isFunction(matchHeight._parseOptions)).toBe(true);
- expect($.isFunction(matchHeight._getProperty)).toBe(true);
- expect($.isFunction(matchHeight._setProperty)).toBe(true);
done();
});
@@ -433,4 +431,4 @@ var testHelper = {
return 'desktop';
}
-}; \ No newline at end of file
+};