-
Notifications
You must be signed in to change notification settings - Fork 555
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add "sortable" options with HTML5 drag&drop
- Loading branch information
Showing
6 changed files
with
310 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
bower_components | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,35 @@ | ||
{ | ||
"name": "jQuery-QueryBuilder", | ||
"version": "1.0.0-SNAPSHOT", | ||
"homepage": "https://github.com/mistic100/jQuery-QueryBuilder", | ||
"authors": [ | ||
"mistic100" | ||
], | ||
"description": "jQuery-QueryBuilder", | ||
"version": "1.0.0", | ||
"authors": [{ | ||
"name": "Damien \"Mistic\" Sorel", | ||
"homepage": "http://www.strangeplanet.fr" | ||
}], | ||
"description": "jQuery plugin for user friendly query/filter creator", | ||
"main": [ | ||
"./query-builder.js", | ||
"./query-builder.css" | ||
], | ||
"dependencies" : { | ||
"bootstrap": "3.x.x" | ||
}, | ||
"license": "MIT" | ||
"keywords": [ | ||
"jquery", | ||
"query", | ||
"builder", | ||
"filter" | ||
], | ||
"license": "MIT", | ||
"homepage": "https://github.com/mistic100/jQuery-QueryBuilder", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/mistic100/jQuery-QueryBuilder.git" | ||
}, | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,34 @@ | ||
{ | ||
"name": "jQuery-QueryBuilder", | ||
"version": "1.0.0-SNAPSHOT",, | ||
"homepage": "https://github.com/mistic100/jQuery-QueryBuilder", | ||
"author": "mistic100", | ||
"version": "1.0.0", | ||
"author": { | ||
"name": "Damien \"Mistic\" Sorel", | ||
"homepage": "http://www.strangeplanet.fr" | ||
}, | ||
"description": "jQuery plugin for user friendly query/filter creator", | ||
"main": [ | ||
"./query-builder.js", | ||
"./query-builder.css" | ||
], | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
"dependencies" : { | ||
"bootstrap": "3.x.x" | ||
}, | ||
"keywords": [ | ||
"jquery", | ||
"query", | ||
"builder", | ||
"filter" | ||
], | ||
"license": "MIT", | ||
"homepage": "https://github.com/mistic100/jQuery-QueryBuilder", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/mistic100/jQuery-QueryBuilder.git" | ||
}, | ||
"dependencies" : { | ||
"bootstrap": "3.x.x" | ||
}, | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/mistic100/jQuery-QueryBuilder/issues" | ||
}, | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.