-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
30 lines (30 loc) · 1.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name" : "jquery.actual",
"version" : "1.0.19",
"title" : "jQuery Actual Plugin",
"author" : "dreamerslab <[email protected]>",
"description": "Older version of jQuery has trouble finding the width/height of invisible DOM elements. With element or its parent element has css property 'display' set to 'none'. `$('.hidden').width();` will return 0 instead of the actual width; This plugin simply fix it.",
"keywords": [
"width", "height", "hidden element width", "hidden element height", "actual"
],
"peerDependencies": {
"jquery": ">=1.2.3"
},
"contributors": [
{ "name": "Ben Lin", "email": "[email protected]" },
{ "name": "Erwin Derksen" },
{ "name": "Jon Tara", "email": "[email protected]" },
{ "name": "Matt Hinchliffe", "email": "[email protected]" },
{ "name": "Ryan Millikin" },
{ "name": "Jacob Quant" },
{ "name": "ejn" },
{ "name": "Rudolf", "email": "[email protected]" },
{ "name": "jamesallchin" }
],
"licenses": [{
"type" : "MIT",
"url" : "LICENSE.txt"
}],
"main": "jquery.actual.js",
"homepage": "http://dreamerslab.com/blog/get-hidden-elements-width-and-height-with-jquery/"
}