Skip to content

Commit cc2c5d7

Browse files
committed
Merge pull request #125 from scottgonzalez/transfer
Transfer ownership to jQuery Foundation
2 parents c61913e + d6a305c commit cc2c5d7

File tree

4 files changed

+39
-22
lines changed

4 files changed

+39
-22
lines changed

LICENSE.txt

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
1-
Copyright (c) 2013, Brandon Aaron (http://brandon.aaron.sh)
1+
Copyright 2006, 2014 jQuery Foundation and other contributors,
2+
https://jquery.org/
3+
4+
This software consists of voluntary contributions made by many
5+
individuals. For exact contribution history, see the revision history
6+
available at https://github.com/jquery/jquery-mousewheel
7+
8+
The following license applies to all parts of this software except as
9+
documented below:
10+
11+
====
212

313
Permission is hereby granted, free of charge, to any person obtaining
414
a copy of this software and associated documentation files (the
@@ -18,3 +28,10 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1828
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1929
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2030
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31+
32+
====
33+
34+
All files located in the node_modules and external directories are
35+
externally maintained libraries used by this software which have their
36+
own licenses; we recommend you read them, as their terms may differ from
37+
the terms above.

README.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,6 @@ The `deltaFactor` property was added to the event object in 3.1.5 so that the ac
4848
extracted. This is a non-standard property.
4949

5050

51-
## See it in action
52-
[See the tests on Github](http://brandonaaron.github.io/jquery-mousewheel/test).
53-
5451
## Using with [Browserify](http://browserify.org)
5552

5653
Support for browserify is baked in.
@@ -77,9 +74,3 @@ In your browser-side javascript:
7774
var $ = require('jquery-browserify');
7875
require('jquery-mousewheel')($);
7976
```
80-
81-
## License
82-
83-
This plugin is licensed under the [MIT License](LICENSE.txt).
84-
85-
Copyright (c) 2013 [Brandon Aaron](http://brandon.aaron.sh)

jquery.mousewheel.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/*! Copyright (c) 2013 Brandon Aaron (http://brandon.aaron.sh)
2-
* Licensed under the MIT License (LICENSE.txt).
1+
/*!
2+
* jQuery Mousewheel 3.1.12
33
*
4-
* Version: 3.1.12
5-
*
6-
* Requires: jQuery 1.2.2+
4+
* Copyright 2014 jQuery Foundation and other contributors
5+
* Released under the MIT license.
6+
* http://jquery.org/license
77
*/
88

99
(function (factory) {

package.json

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,40 @@
11
{
22
"name": "jquery-mousewheel",
33
"version": "3.1.12",
4-
"author": "Brandon Aaron (http://brandon.aaron.sh)",
4+
"author": {
5+
"name": "jQuery Foundation and other contributors",
6+
"url": "https://github.com/jquery/jquery-mousewheel/blob/master/AUTHORS.txt"
7+
},
58
"description": "A jQuery plugin that adds cross-browser mouse wheel support.",
6-
"license": "MIT",
7-
"homepage": "https://github.com/brandonaaron/jquery-mousewheel",
9+
"licenses": [
10+
{
11+
"type": "MIT",
12+
"url": "https://github.com/jquery/jquery-mousewheel/blob/master/LICENSE.txt"
13+
}
14+
],
15+
"homepage": "https://github.com/jquery/jquery-mousewheel",
816
"main": "./jquery.mousewheel.js",
917
"repository": {
1018
"type": "git",
11-
"url": "https://github.com/brandonaaron/jquery-mousewheel.git"
19+
"url": "https://github.com/jquery/jquery-mousewheel.git"
1220
},
1321
"bugs": {
14-
"url": "https://github.com/brandonaaron/jquery-mousewheel/issues"
22+
"url": "https://github.com/jquery/jquery-mousewheel/issues"
1523
},
1624
"keywords": [
1725
"jquery",
1826
"mouse",
1927
"wheel",
2028
"event",
2129
"mousewheel",
22-
"plugin",
30+
"jquery-plugin",
2331
"browser"
2432
],
2533
"files": [
2634
"ChangeLog.md",
2735
"jquery.mousewheel.js",
28-
"README.md"
36+
"README.md",
37+
"LICENSE.txt"
2938
],
3039
"devDependencies": {
3140
"grunt": "~0.4.1",

0 commit comments

Comments
 (0)