1/**
2* jquery-match-height master by @liabru
3* http://brm.io/jquery-match-height/
4* License: MIT
5*/
6
7;(function(factory) { // eslint-disable-line no-extra-semi
8 'use strict';
9 if (typeof define === 'function' && define.amd) {
10 // AMD
11 define(['jquery'], factory);
12 } else if (typeof module !== 'undefined' && module.exports) {
13 // CommonJS
14 module.exports = factory(require('jquery'));
15 } else {
16 // Global
17 factory(jQuery);
18 }
19})(function($) {
20 /*
21 * internal
22 */
23
24 var _previousResizeWidth = -1,
25 _updateTimeout = -1;
26
27 /*
28 * _parse
29 * value parse utility function
30 */
31
32 var _parse = function(value) {
33 // parse value and convert NaN to 0
34 return parseFloat(value) || 0;
35 };
36
37 /*
38 * _rows
39 * utility function returns array of jQuery selections representing each row
40 * (as displayed after float wrapping applied by browser)
...
</html>