Skip to Content

JavaScript File

URL: https://taowebsite.com.vn/wp-content/plugins/wp-show-posts/js/jquery.matchHeight.js?ver=1.1.3
HTTP Status: 200 OK
MIME Type: application/javascript
Last Modified: Fri, 19 Aug 2022 16:16:42 GMT
Download Time: Less than a second
Cookies: None
Size: 12 KB
HTTP Headers:  9 headers
Links In:  1 pages
Links Out:  0 links
Images:  0 images
CSS:  0 files
JavaScript:  0 files
  
OK Issues: No issues found

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>