Comparing version 1.10.4 to 1.10.5
@@ -5,3 +5,3 @@ { | ||
"description": "A curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library.", | ||
"version": "1.10.4", | ||
"version": "1.10.5", | ||
"homepage": "http://jqueryui.com", | ||
@@ -8,0 +8,0 @@ "author": { |
@@ -1,2 +0,2 @@ | ||
[jQuery UI](http://jqueryui.com/) - Interactions and Widgets for the web | ||
[jQuery UI](http://jqueryui.com/) for Browserify | ||
================================ | ||
@@ -8,5 +8,22 @@ | ||
If you are interested in helping develop jQuery UI, you are in the right place. | ||
To discuss development with team members and the community, visit the [Developing jQuery UI Forum](http://forum.jquery.com/developing-jquery-ui) or in #jquery on irc.freednode.net. | ||
This repo has a script to convert jQuery UI's modules into [browserify](http://browserify.org/) modules. It parses | ||
the dependencies in the comments of the modules and generates equivalent `require` calls for them, along with `jquery`. | ||
## This repo only holds precompiled files. | ||
To install: | ||
npm install jquery jquery-ui | ||
To use: | ||
```javascript | ||
// load jquery | ||
var $ = require('jquery'); | ||
// load everything | ||
require('jquery-ui'); | ||
// or load just the modules you need | ||
require('jquery-ui/draggable'); | ||
require('jquery-ui/droppable'); | ||
require('jquery-ui/sortable'); | ||
``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4337849
29