File: License_and_Changelog.txt

package info (click to toggle)
jquery-goodies 12-1.1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,376 kB
  • sloc: xml: 308; makefile: 82; php: 48; sql: 39
file content (65 lines) | stat: -rw-r--r-- 2,768 bytes parent folder | download | duplicates (7)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65

jquery.event.drop.js / threedubmedia.com

--------------------------------------------------------------------------------

The MIT License

Copyright (c) 2008-2009, Three Dub Media (threedubmedia@gmail.com)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

--------------------------------------------------------------------------------

Changes in Version 1.2, 2009-03-16

- added try/catch block in the private hijak function to fix an error with IE.
The original event object disappears when using setTimeout, so hijacking an 
event and handling a custom event later, was throwing an exception whenever 
the handler would return false, because "preventDefault" and "stopPropagation" 
were automatically being called on the "originalEvent." Thanks to Charles,
Vivekanand Mishra, and Steen Nielsen, for helping uncover this issue. 

--------------------------------------------------------------------------------

Changes in Version 1.1, 2009-01-26

- Now Compatable with jQuery 1.3.x and jQuery 1.2.x

- added private hijack function to handle custom event handlers and find the 
correct return value in jQuery 1.2.x as well as jQuery 1.3.x

- reworded the "tolerate" loop to save some lines.

- Made the "tolerate" function private.

- renamed the private "$elements" property to "$targets"

- Modified "$.dropManage" to only set certain options, instead of extending the 
whole "$.event.special.drop" object, to prevent accidental overwrite.

- added local variable refs for "$.event" and "$.event.special" to reduce file
size when minified/packed, and speed up execution.

--------------------------------------------------------------------------------

Changes in Version 1.0, Released 2008-08-08

- Initial Release