Skip to content

Commit 054596f

Browse files
committed
Merge pull request #107 from glensc/component
add composer component package
2 parents b38dd8f + 784514c commit 054596f

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

composer.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"name": "components/jquery-blockui",
3+
"description": "Simulate synchronous ajax by blocking - not locking - the UI. This plugin lets you block user interaction with the page or with a specific element on the page. Also great at displaying modal dialogs.",
4+
"keywords": [
5+
"block",
6+
"overlay",
7+
"dialog",
8+
"modal"
9+
],
10+
"license": ["MIT", "GPL"],
11+
"type": "component",
12+
"homepage": "http://jquery.malsup.com/block/",
13+
"authors": [
14+
{
15+
"name": "M. Alsup",
16+
"homepage": "http://jquery.malsup.com"
17+
}
18+
],
19+
"require": {
20+
"robloach/component-installer": "*",
21+
"components/jquery": ">=1.7"
22+
},
23+
"extra": {
24+
"component": {
25+
"scripts": [
26+
"jquery.blockUI.js"
27+
],
28+
"shim": {
29+
"deps": [
30+
"jquery"
31+
]
32+
}
33+
}
34+
}
35+
}

0 commit comments

Comments
 (0)