@bingads-webui-campaign/accounts-grid 0.0.1-security → 14.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of @bingads-webui-campaign/accounts-grid might be problematic. Click here for more details.
- package/AUTHORS.txt +337 -0
- package/LICENSE.txt +20 -0
- package/README.md +58 -3
- package/bower.json +14 -0
- package/dist/jquery.js +10996 -0
- package/dist/jquery.min.js +2 -0
- package/dist/jquery.min.map +1 -0
- package/dist/jquery.slim.js +8894 -0
- package/dist/jquery.slim.min.js +2 -0
- package/dist/jquery.slim.min.map +1 -0
- package/external/sizzle/LICENSE.txt +36 -0
- package/external/sizzle/dist/sizzle.js +2542 -0
- package/external/sizzle/dist/sizzle.min.js +3 -0
- package/external/sizzle/dist/sizzle.min.map +1 -0
- package/package.json +143 -3
- package/register-client.js +12 -0
- package/src/ajax/jsonp.js +103 -0
- package/src/ajax/load.js +77 -0
- package/src/ajax/script.js +74 -0
- package/src/ajax/var/location.js +5 -0
- package/src/ajax/var/nonce.js +5 -0
- package/src/ajax/var/rquery.js +5 -0
- package/src/ajax/xhr.js +170 -0
- package/src/ajax.js +876 -0
- package/src/attributes/attr.js +141 -0
- package/src/attributes/classes.js +184 -0
- package/src/attributes/prop.js +142 -0
- package/src/attributes/support.js +33 -0
- package/src/attributes/val.js +191 -0
- package/src/attributes.js +13 -0
- package/src/callbacks.js +236 -0
- package/src/core/DOMEval.js +43 -0
- package/src/core/access.js +72 -0
- package/src/core/camelCase.js +23 -0
- package/src/core/init.js +129 -0
- package/src/core/isAttached.js +26 -0
- package/src/core/nodeName.js +13 -0
- package/src/core/parseHTML.js +65 -0
- package/src/core/parseXML.js +35 -0
- package/src/core/ready-no-deferred.js +97 -0
- package/src/core/ready.js +86 -0
- package/src/core/readyException.js +13 -0
- package/src/core/stripAndCollapse.js +14 -0
- package/src/core/support.js +20 -0
- package/src/core/toType.js +20 -0
- package/src/core/var/rsingleTag.js +7 -0
- package/src/core.js +400 -0
- package/src/css/addGetHookIf.js +26 -0
- package/src/css/adjustCSS.js +74 -0
- package/src/css/curCSS.js +100 -0
- package/src/css/finalPropName.js +42 -0
- package/src/css/hiddenVisibleSelectors.js +15 -0
- package/src/css/showHide.js +105 -0
- package/src/css/support.js +152 -0
- package/src/css/var/cssExpand.js +5 -0
- package/src/css/var/getStyles.js +17 -0
- package/src/css/var/isHiddenWithinTree.js +34 -0
- package/src/css/var/rboxStyle.js +7 -0
- package/src/css/var/rcustomProp.js +7 -0
- package/src/css/var/rnumnonpx.js +7 -0
- package/src/css/var/swap.js +26 -0
- package/src/css.js +495 -0
- package/src/data/Data.js +162 -0
- package/src/data/var/acceptData.js +19 -0
- package/src/data/var/dataPriv.js +7 -0
- package/src/data/var/dataUser.js +7 -0
- package/src/data.js +180 -0
- package/src/deferred/exceptionHook.js +21 -0
- package/src/deferred.js +399 -0
- package/src/deprecated/ajax-event-alias.js +22 -0
- package/src/deprecated/event.js +50 -0
- package/src/deprecated.js +89 -0
- package/src/dimensions.js +60 -0
- package/src/effects/Tween.js +125 -0
- package/src/effects/animatedSelector.js +15 -0
- package/src/effects.js +702 -0
- package/src/event/focusin.js +58 -0
- package/src/event/support.js +11 -0
- package/src/event/trigger.js +199 -0
- package/src/event.js +874 -0
- package/src/exports/amd.js +26 -0
- package/src/exports/global.js +34 -0
- package/src/jquery.js +41 -0
- package/src/manipulation/_evalUrl.js +32 -0
- package/src/manipulation/buildFragment.js +106 -0
- package/src/manipulation/getAll.js +32 -0
- package/src/manipulation/setGlobalEval.js +22 -0
- package/src/manipulation/support.js +41 -0
- package/src/manipulation/var/rscriptType.js +5 -0
- package/src/manipulation/var/rtagName.js +8 -0
- package/src/manipulation/wrapMap.js +30 -0
- package/src/manipulation.js +487 -0
- package/src/offset.js +232 -0
- package/src/queue/delay.js +23 -0
- package/src/queue.js +145 -0
- package/src/selector-native.js +240 -0
- package/src/selector-sizzle.js +19 -0
- package/src/selector.js +3 -0
- package/src/serialize.js +134 -0
- package/src/traversing/findFilter.js +97 -0
- package/src/traversing/var/dir.js +22 -0
- package/src/traversing/var/rneedsContext.js +8 -0
- package/src/traversing/var/siblings.js +17 -0
- package/src/traversing.js +198 -0
- package/src/var/ObjectFunctionString.js +7 -0
- package/src/var/arr.js +5 -0
- package/src/var/class2type.js +6 -0
- package/src/var/document.js +5 -0
- package/src/var/documentElement.js +7 -0
- package/src/var/flat.js +16 -0
- package/src/var/fnToString.js +7 -0
- package/src/var/getProto.js +5 -0
- package/src/var/hasOwn.js +7 -0
- package/src/var/indexOf.js +7 -0
- package/src/var/isFunction.js +17 -0
- package/src/var/isWindow.js +8 -0
- package/src/var/pnum.js +5 -0
- package/src/var/push.js +7 -0
- package/src/var/rcheckableType.js +5 -0
- package/src/var/rcssNum.js +9 -0
- package/src/var/rnothtmlwhite.js +8 -0
- package/src/var/rtrimCSS.js +12 -0
- package/src/var/slice.js +7 -0
- package/src/var/support.js +6 -0
- package/src/var/toString.js +7 -0
- package/src/var/whitespace.js +8 -0
- package/src/wrap.js +78 -0
package/AUTHORS.txt
ADDED
|
@@ -0,0 +1,337 @@
|
|
|
1
|
+
John Resig <jeresig@gmail.com>
|
|
2
|
+
Gilles van den Hoven <gilles0181@gmail.com>
|
|
3
|
+
Michael Geary <mike@geary.com>
|
|
4
|
+
Stefan Petre <stefan.petre@gmail.com>
|
|
5
|
+
Yehuda Katz <wycats@gmail.com>
|
|
6
|
+
Corey Jewett <cj@syntheticplayground.com>
|
|
7
|
+
Klaus Hartl <klaus.hartl@gmail.com>
|
|
8
|
+
Franck Marcia <franck.marcia@gmail.com>
|
|
9
|
+
Jörn Zaefferer <joern.zaefferer@gmail.com>
|
|
10
|
+
Paul Bakaus <paul.bakaus@gmail.com>
|
|
11
|
+
Brandon Aaron <brandon.aaron@gmail.com>
|
|
12
|
+
Mike Alsup <malsup@gmail.com>
|
|
13
|
+
Dave Methvin <dave.methvin@gmail.com>
|
|
14
|
+
Ed Engelhardt <edengelhardt@gmail.com>
|
|
15
|
+
Sean Catchpole <littlecooldude@gmail.com>
|
|
16
|
+
Paul Mclanahan <pmclanahan@gmail.com>
|
|
17
|
+
David Serduke <davidserduke@gmail.com>
|
|
18
|
+
Richard D. Worth <rdworth@gmail.com>
|
|
19
|
+
Scott González <scott.gonzalez@gmail.com>
|
|
20
|
+
Ariel Flesler <aflesler@gmail.com>
|
|
21
|
+
Jon Evans <jon@springyweb.com>
|
|
22
|
+
TJ Holowaychuk <tj@vision-media.ca>
|
|
23
|
+
Michael Bensoussan <mickey@seesmic.com>
|
|
24
|
+
Robert Katić <robert.katic@gmail.com>
|
|
25
|
+
Louis-Rémi Babé <lrbabe@gmail.com>
|
|
26
|
+
Earle Castledine <mrspeaker@gmail.com>
|
|
27
|
+
Damian Janowski <damian.janowski@gmail.com>
|
|
28
|
+
Rich Dougherty <rich@rd.gen.nz>
|
|
29
|
+
Kim Dalsgaard <kim@kimdalsgaard.com>
|
|
30
|
+
Andrea Giammarchi <andrea.giammarchi@gmail.com>
|
|
31
|
+
Mark Gibson <jollytoad@gmail.com>
|
|
32
|
+
Karl Swedberg <kswedberg@gmail.com>
|
|
33
|
+
Justin Meyer <justinbmeyer@gmail.com>
|
|
34
|
+
Ben Alman <cowboy@rj3.net>
|
|
35
|
+
James Padolsey <cla@padolsey.net>
|
|
36
|
+
David Petersen <public@petersendidit.com>
|
|
37
|
+
Batiste Bieler <batiste.bieler@gmail.com>
|
|
38
|
+
Alexander Farkas <info@corrupt-system.de>
|
|
39
|
+
Rick Waldron <waldron.rick@gmail.com>
|
|
40
|
+
Filipe Fortes <filipe@fortes.com>
|
|
41
|
+
Neeraj Singh <neerajdotname@gmail.com>
|
|
42
|
+
Paul Irish <paul.irish@gmail.com>
|
|
43
|
+
Iraê Carvalho <irae@irae.pro.br>
|
|
44
|
+
Matt Curry <matt@pseudocoder.com>
|
|
45
|
+
Michael Monteleone <michael@michaelmonteleone.net>
|
|
46
|
+
Noah Sloan <noah.sloan@gmail.com>
|
|
47
|
+
Tom Viner <github@viner.tv>
|
|
48
|
+
Douglas Neiner <doug@dougneiner.com>
|
|
49
|
+
Adam J. Sontag <ajpiano@ajpiano.com>
|
|
50
|
+
Dave Reed <dareed@microsoft.com>
|
|
51
|
+
Ralph Whitbeck <ralph.whitbeck@gmail.com>
|
|
52
|
+
Carl Fürstenberg <azatoth@gmail.com>
|
|
53
|
+
Jacob Wright <jacwright@gmail.com>
|
|
54
|
+
J. Ryan Stinnett <jryans@gmail.com>
|
|
55
|
+
unknown <Igen005@.upcorp.ad.uprr.com>
|
|
56
|
+
temp01 <temp01irc@gmail.com>
|
|
57
|
+
Heungsub Lee <h@subl.ee>
|
|
58
|
+
Colin Snover <github.com@zetafleet.com>
|
|
59
|
+
Ryan W Tenney <ryan@10e.us>
|
|
60
|
+
Pinhook <contact@pinhooklabs.com>
|
|
61
|
+
Ron Otten <r.j.g.otten@gmail.com>
|
|
62
|
+
Jephte Clain <Jephte.Clain@univ-reunion.fr>
|
|
63
|
+
Anton Matzneller <obhvsbypqghgc@gmail.com>
|
|
64
|
+
Alex Sexton <AlexSexton@gmail.com>
|
|
65
|
+
Dan Heberden <danheberden@gmail.com>
|
|
66
|
+
Henri Wiechers <hwiechers@gmail.com>
|
|
67
|
+
Russell Holbrook <russell.holbrook@patch.com>
|
|
68
|
+
Julian Aubourg <aubourg.julian@gmail.com>
|
|
69
|
+
Gianni Alessandro Chiappetta <gianni@runlevel6.org>
|
|
70
|
+
Scott Jehl <scottjehl@gmail.com>
|
|
71
|
+
James Burke <jrburke@gmail.com>
|
|
72
|
+
Jonas Pfenniger <jonas@pfenniger.name>
|
|
73
|
+
Xavi Ramirez <xavi.rmz@gmail.com>
|
|
74
|
+
Jared Grippe <jared@deadlyicon.com>
|
|
75
|
+
Sylvester Keil <sylvester@keil.or.at>
|
|
76
|
+
Brandon Sterne <bsterne@mozilla.com>
|
|
77
|
+
Mathias Bynens <mathias@qiwi.be>
|
|
78
|
+
Timmy Willison <4timmywil@gmail.com>
|
|
79
|
+
Corey Frang <gnarf37@gmail.com>
|
|
80
|
+
Digitalxero <digitalxero>
|
|
81
|
+
Anton Kovalyov <anton@kovalyov.net>
|
|
82
|
+
David Murdoch <david@davidmurdoch.com>
|
|
83
|
+
Josh Varner <josh.varner@gmail.com>
|
|
84
|
+
Charles McNulty <cmcnulty@kznf.com>
|
|
85
|
+
Jordan Boesch <jboesch26@gmail.com>
|
|
86
|
+
Jess Thrysoee <jess@thrysoee.dk>
|
|
87
|
+
Michael Murray <m@murz.net>
|
|
88
|
+
Lee Carpenter <elcarpie@gmail.com>
|
|
89
|
+
Alexis Abril <me@alexisabril.com>
|
|
90
|
+
Rob Morgan <robbym@gmail.com>
|
|
91
|
+
John Firebaugh <john_firebaugh@bigfix.com>
|
|
92
|
+
Sam Bisbee <sam@sbisbee.com>
|
|
93
|
+
Gilmore Davidson <gilmoreorless@gmail.com>
|
|
94
|
+
Brian Brennan <me@brianlovesthings.com>
|
|
95
|
+
Xavier Montillet <xavierm02.net@gmail.com>
|
|
96
|
+
Daniel Pihlstrom <sciolist.se@gmail.com>
|
|
97
|
+
Sahab Yazdani <sahab.yazdani+github@gmail.com>
|
|
98
|
+
avaly <github-com@agachi.name>
|
|
99
|
+
Scott Hughes <hi@scott-hughes.me>
|
|
100
|
+
Mike Sherov <mike.sherov@gmail.com>
|
|
101
|
+
Greg Hazel <ghazel@gmail.com>
|
|
102
|
+
Schalk Neethling <schalk@ossreleasefeed.com>
|
|
103
|
+
Denis Knauf <Denis.Knauf@gmail.com>
|
|
104
|
+
Timo Tijhof <krinklemail@gmail.com>
|
|
105
|
+
Steen Nielsen <swinedk@gmail.com>
|
|
106
|
+
Anton Ryzhov <anton@ryzhov.me>
|
|
107
|
+
Shi Chuan <shichuanr@gmail.com>
|
|
108
|
+
Berker Peksag <berker.peksag@gmail.com>
|
|
109
|
+
Toby Brain <tobyb@freshview.com>
|
|
110
|
+
Matt Mueller <mattmuelle@gmail.com>
|
|
111
|
+
Justin <drakefjustin@gmail.com>
|
|
112
|
+
Daniel Herman <daniel.c.herman@gmail.com>
|
|
113
|
+
Oleg Gaidarenko <markelog@gmail.com>
|
|
114
|
+
Richard Gibson <richard.gibson@gmail.com>
|
|
115
|
+
Rafaël Blais Masson <rafbmasson@gmail.com>
|
|
116
|
+
cmc3cn <59194618@qq.com>
|
|
117
|
+
Joe Presbrey <presbrey@gmail.com>
|
|
118
|
+
Sindre Sorhus <sindresorhus@gmail.com>
|
|
119
|
+
Arne de Bree <arne@bukkie.nl>
|
|
120
|
+
Vladislav Zarakovsky <vlad.zar@gmail.com>
|
|
121
|
+
Andrew E Monat <amonat@gmail.com>
|
|
122
|
+
Oskari <admin@o-programs.com>
|
|
123
|
+
Joao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>
|
|
124
|
+
tsinha <tsinha@Anthonys-MacBook-Pro.local>
|
|
125
|
+
Matt Farmer <matt@frmr.me>
|
|
126
|
+
Trey Hunner <treyhunner@gmail.com>
|
|
127
|
+
Jason Moon <jmoon@socialcast.com>
|
|
128
|
+
Jeffery To <jeffery.to@gmail.com>
|
|
129
|
+
Kris Borchers <kris.borchers@gmail.com>
|
|
130
|
+
Vladimir Zhuravlev <private.face@gmail.com>
|
|
131
|
+
Jacob Thornton <jacobthornton@gmail.com>
|
|
132
|
+
Chad Killingsworth <chadkillingsworth@missouristate.edu>
|
|
133
|
+
Nowres Rafid <nowres.rafed@gmail.com>
|
|
134
|
+
David Benjamin <davidben@mit.edu>
|
|
135
|
+
Uri Gilad <antishok@gmail.com>
|
|
136
|
+
Chris Faulkner <thefaulkner@gmail.com>
|
|
137
|
+
Elijah Manor <elijah.manor@gmail.com>
|
|
138
|
+
Daniel Chatfield <chatfielddaniel@gmail.com>
|
|
139
|
+
Nikita Govorov <nikita.govorov@gmail.com>
|
|
140
|
+
Wesley Walser <waw325@gmail.com>
|
|
141
|
+
Mike Pennisi <mike@mikepennisi.com>
|
|
142
|
+
Markus Staab <markus.staab@redaxo.de>
|
|
143
|
+
Dave Riddle <david@joyvuu.com>
|
|
144
|
+
Callum Macrae <callum@lynxphp.com>
|
|
145
|
+
Benjamin Truyman <bentruyman@gmail.com>
|
|
146
|
+
James Huston <james@jameshuston.net>
|
|
147
|
+
Erick Ruiz de Chávez <erickrdch@gmail.com>
|
|
148
|
+
David Bonner <dbonner@cogolabs.com>
|
|
149
|
+
Akintayo Akinwunmi <aakinwunmi@judge.com>
|
|
150
|
+
MORGAN <morgan@morgangraphics.com>
|
|
151
|
+
Ismail Khair <ismail.khair@gmail.com>
|
|
152
|
+
Carl Danley <carldanley@gmail.com>
|
|
153
|
+
Mike Petrovich <michael.c.petrovich@gmail.com>
|
|
154
|
+
Greg Lavallee <greglavallee@wapolabs.com>
|
|
155
|
+
Daniel Gálvez <dgalvez@editablething.com>
|
|
156
|
+
Sai Lung Wong <sai.wong@huffingtonpost.com>
|
|
157
|
+
Tom H Fuertes <TomFuertes@gmail.com>
|
|
158
|
+
Roland Eckl <eckl.roland@googlemail.com>
|
|
159
|
+
Jay Merrifield <fracmak@gmail.com>
|
|
160
|
+
Allen J Schmidt Jr <cobrasoft@gmail.com>
|
|
161
|
+
Jonathan Sampson <jjdsampson@gmail.com>
|
|
162
|
+
Marcel Greter <marcel.greter@ocbnet.ch>
|
|
163
|
+
Matthias Jäggli <matthias.jaeggli@gmail.com>
|
|
164
|
+
David Fox <dfoxinator@gmail.com>
|
|
165
|
+
Yiming He <yiminghe@gmail.com>
|
|
166
|
+
Devin Cooper <cooper.semantics@gmail.com>
|
|
167
|
+
Paul Ramos <paul.b.ramos@gmail.com>
|
|
168
|
+
Rod Vagg <rod@vagg.org>
|
|
169
|
+
Bennett Sorbo <bsorbo@gmail.com>
|
|
170
|
+
Sebastian Burkhard <sebi.burkhard@gmail.com>
|
|
171
|
+
Zachary Adam Kaplan <razic@viralkitty.com>
|
|
172
|
+
nanto_vi <nanto@moon.email.ne.jp>
|
|
173
|
+
nanto <nanto@moon.email.ne.jp>
|
|
174
|
+
Danil Somsikov <danilasomsikov@gmail.com>
|
|
175
|
+
Ryunosuke SATO <tricknotes.rs@gmail.com>
|
|
176
|
+
Jean Boussier <jean.boussier@gmail.com>
|
|
177
|
+
Adam Coulombe <me@adam.co>
|
|
178
|
+
Andrew Plummer <plummer.andrew@gmail.com>
|
|
179
|
+
Mark Raddatz <mraddatz@gmail.com>
|
|
180
|
+
Isaac Z. Schlueter <i@izs.me>
|
|
181
|
+
Karl Sieburg <ksieburg@yahoo.com>
|
|
182
|
+
Pascal Borreli <pascal@borreli.com>
|
|
183
|
+
Nguyen Phuc Lam <ruado1987@gmail.com>
|
|
184
|
+
Dmitry Gusev <dmitry.gusev@gmail.com>
|
|
185
|
+
Michał Gołębiowski-Owczarek <m.goleb@gmail.com>
|
|
186
|
+
Li Xudong <istonelee@gmail.com>
|
|
187
|
+
Steven Benner <admin@stevenbenner.com>
|
|
188
|
+
Tom H Fuertes <tomfuertes@gmail.com>
|
|
189
|
+
Renato Oliveira dos Santos <ros3@cin.ufpe.br>
|
|
190
|
+
ros3cin <ros3@cin.ufpe.br>
|
|
191
|
+
Jason Bedard <jason+jquery@jbedard.ca>
|
|
192
|
+
Kyle Robinson Young <kyle@dontkry.com>
|
|
193
|
+
Chris Talkington <chris@talkingtontech.com>
|
|
194
|
+
Eddie Monge <eddie@eddiemonge.com>
|
|
195
|
+
Terry Jones <terry@jon.es>
|
|
196
|
+
Jason Merino <jasonmerino@gmail.com>
|
|
197
|
+
Jeremy Dunck <jdunck@gmail.com>
|
|
198
|
+
Chris Price <price.c@gmail.com>
|
|
199
|
+
Guy Bedford <guybedford@gmail.com>
|
|
200
|
+
Amey Sakhadeo <me@ameyms.com>
|
|
201
|
+
Mike Sidorov <mikes.ekb@gmail.com>
|
|
202
|
+
Anthony Ryan <anthonyryan1@gmail.com>
|
|
203
|
+
Dominik D. Geyer <dominik.geyer@gmail.com>
|
|
204
|
+
George Kats <katsgeorgeek@gmail.com>
|
|
205
|
+
Lihan Li <frankieteardrop@gmail.com>
|
|
206
|
+
Ronny Springer <springer.ronny@gmail.com>
|
|
207
|
+
Chris Antaki <ChrisAntaki@gmail.com>
|
|
208
|
+
Marian Sollmann <marian.sollmann@cargomedia.ch>
|
|
209
|
+
njhamann <njhamann@gmail.com>
|
|
210
|
+
Ilya Kantor <iliakan@gmail.com>
|
|
211
|
+
David Hong <d.hong@me.com>
|
|
212
|
+
John Paul <john@johnkpaul.com>
|
|
213
|
+
Jakob Stoeck <jakob@pokermania.de>
|
|
214
|
+
Christopher Jones <chris@cjqed.com>
|
|
215
|
+
Forbes Lindesay <forbes@lindesay.co.uk>
|
|
216
|
+
S. Andrew Sheppard <andrew@wq.io>
|
|
217
|
+
Leonardo Balter <leonardo.balter@gmail.com>
|
|
218
|
+
Roman Reiß <me@silverwind.io>
|
|
219
|
+
Benjy Cui <benjytrys@gmail.com>
|
|
220
|
+
Rodrigo Rosenfeld Rosas <rr.rosas@gmail.com>
|
|
221
|
+
John Hoven <hovenj@gmail.com>
|
|
222
|
+
Philip Jägenstedt <philip@foolip.org>
|
|
223
|
+
Christian Kosmowski <ksmwsk@gmail.com>
|
|
224
|
+
Liang Peng <poppinlp@gmail.com>
|
|
225
|
+
TJ VanToll <tj.vantoll@gmail.com>
|
|
226
|
+
Senya Pugach <upisfree@outlook.com>
|
|
227
|
+
Aurelio De Rosa <aurelioderosa@gmail.com>
|
|
228
|
+
Nazar Mokrynskyi <nazar@mokrynskyi.com>
|
|
229
|
+
Amit Merchant <bullredeyes@gmail.com>
|
|
230
|
+
Jason Bedard <jason+github@jbedard.ca>
|
|
231
|
+
Arthur Verschaeve <contact@arthurverschaeve.be>
|
|
232
|
+
Dan Hart <danhart@notonthehighstreet.com>
|
|
233
|
+
Bin Xin <rhyzix@gmail.com>
|
|
234
|
+
David Corbacho <davidcorbacho@gmail.com>
|
|
235
|
+
Veaceslav Grimalschi <grimalschi@yandex.ru>
|
|
236
|
+
Daniel Husar <dano.husar@gmail.com>
|
|
237
|
+
Frederic Hemberger <mail@frederic-hemberger.de>
|
|
238
|
+
Ben Toews <mastahyeti@gmail.com>
|
|
239
|
+
Aditya Raghavan <araghavan3@gmail.com>
|
|
240
|
+
Victor Homyakov <vkhomyackov@gmail.com>
|
|
241
|
+
Shivaji Varma <contact@shivajivarma.com>
|
|
242
|
+
Nicolas HENRY <icewil@gmail.com>
|
|
243
|
+
Anne-Gaelle Colom <coloma@westminster.ac.uk>
|
|
244
|
+
George Mauer <gmauer@gmail.com>
|
|
245
|
+
Leonardo Braga <leonardo.braga@gmail.com>
|
|
246
|
+
Stephen Edgar <stephen@netweb.com.au>
|
|
247
|
+
Thomas Tortorini <thomastortorini@gmail.com>
|
|
248
|
+
Winston Howes <winstonhowes@gmail.com>
|
|
249
|
+
Jon Hester <jon.d.hester@gmail.com>
|
|
250
|
+
Alexander O'Mara <me@alexomara.com>
|
|
251
|
+
Bastian Buchholz <buchholz.bastian@googlemail.com>
|
|
252
|
+
Arthur Stolyar <nekr.fabula@gmail.com>
|
|
253
|
+
Calvin Metcalf <calvin.metcalf@gmail.com>
|
|
254
|
+
Mu Haibao <mhbseal@163.com>
|
|
255
|
+
Richard McDaniel <rm0026@uah.edu>
|
|
256
|
+
Chris Rebert <github@rebertia.com>
|
|
257
|
+
Gabriel Schulhof <gabriel.schulhof@intel.com>
|
|
258
|
+
Gilad Peleg <giladp007@gmail.com>
|
|
259
|
+
Martin Naumann <martin@geekonaut.de>
|
|
260
|
+
Marek Lewandowski <m.lewandowski@cksource.com>
|
|
261
|
+
Bruno Pérel <brunoperel@gmail.com>
|
|
262
|
+
Reed Loden <reed@reedloden.com>
|
|
263
|
+
Daniel Nill <daniellnill@gmail.com>
|
|
264
|
+
Yongwoo Jeon <yongwoo.jeon@navercorp.com>
|
|
265
|
+
Sean Henderson <seanh.za@gmail.com>
|
|
266
|
+
Richard Kraaijenhagen <stdin+git@riichard.com>
|
|
267
|
+
Connor Atherton <c.liam.atherton@gmail.com>
|
|
268
|
+
Gary Ye <garysye@gmail.com>
|
|
269
|
+
Christian Grete <webmaster@christiangrete.com>
|
|
270
|
+
Liza Ramo <liza.h.ramo@gmail.com>
|
|
271
|
+
Julian Alexander Murillo <julian.alexander.murillo@gmail.com>
|
|
272
|
+
Joelle Fleurantin <joasqueeniebee@gmail.com>
|
|
273
|
+
Jae Sung Park <alberto.park@gmail.com>
|
|
274
|
+
Jun Sun <klsforever@gmail.com>
|
|
275
|
+
Josh Soref <apache@soref.com>
|
|
276
|
+
Henry Wong <henryw4k@gmail.com>
|
|
277
|
+
Jon Dufresne <jon.dufresne@gmail.com>
|
|
278
|
+
Martijn W. van der Lee <martijn@vanderlee.com>
|
|
279
|
+
Devin Wilson <dwilson6.github@gmail.com>
|
|
280
|
+
Steve Mao <maochenyan@gmail.com>
|
|
281
|
+
Zack Hall <zackhall@outlook.com>
|
|
282
|
+
Bernhard M. Wiedemann <jquerybmw@lsmod.de>
|
|
283
|
+
Todor Prikumov <tono_pr@abv.bg>
|
|
284
|
+
Jha Naman <createnaman@gmail.com>
|
|
285
|
+
William Robinet <william.robinet@conostix.com>
|
|
286
|
+
Alexander Lisianoi <all3fox@gmail.com>
|
|
287
|
+
Vitaliy Terziev <vitaliyterziev@gmail.com>
|
|
288
|
+
Joe Trumbull <trumbull.j@gmail.com>
|
|
289
|
+
Alexander K <xpyro@ya.ru>
|
|
290
|
+
Damian Senn <jquery@topaxi.codes>
|
|
291
|
+
Ralin Chimev <ralin.chimev@gmail.com>
|
|
292
|
+
Felipe Sateler <fsateler@gmail.com>
|
|
293
|
+
Christophe Tafani-Dereeper <christophetd@hotmail.fr>
|
|
294
|
+
Manoj Kumar <nithmanoj@gmail.com>
|
|
295
|
+
David Broder-Rodgers <broder93@gmail.com>
|
|
296
|
+
Alex Louden <alex@louden.com>
|
|
297
|
+
Alex Padilla <alexonezero@outlook.com>
|
|
298
|
+
南漂一卒 <shiy007@qq.com>
|
|
299
|
+
karan-96 <karanbatra96@gmail.com>
|
|
300
|
+
Boom Lee <teabyii@gmail.com>
|
|
301
|
+
Andreas Solleder <asol@num42.de>
|
|
302
|
+
CDAGaming <cstack2011@yahoo.com>
|
|
303
|
+
Pierre Spring <pierre@nelm.io>
|
|
304
|
+
Shashanka Nataraj <shashankan.10@gmail.com>
|
|
305
|
+
Erik Lax <erik@datahack.se>
|
|
306
|
+
Matan Kotler-Berkowitz <205matan@gmail.com>
|
|
307
|
+
Jordan Beland <jordan.beland@gmail.com>
|
|
308
|
+
Henry Zhu <hi@henryzoo.com>
|
|
309
|
+
Saptak Sengupta <saptak013@gmail.com>
|
|
310
|
+
Nilton Cesar <niltoncms@gmail.com>
|
|
311
|
+
basil.belokon <basil.belokon@gmail.com>
|
|
312
|
+
tmybr11 <tomas.perone@gmail.com>
|
|
313
|
+
Luis Emilio Velasco Sanchez <emibloque@gmail.com>
|
|
314
|
+
Ed S <ejsanders@gmail.com>
|
|
315
|
+
Bert Zhang <enbo@users.noreply.github.com>
|
|
316
|
+
Andrei Fangli <andrei_fangli@outlook.com>
|
|
317
|
+
Marja Hölttä <marja.holtta@gmail.com>
|
|
318
|
+
abnud1 <ahmad13932013@hotmail.com>
|
|
319
|
+
buddh4 <mail@jharrer.de>
|
|
320
|
+
Pat O'Callaghan <patocallaghan@gmail.com>
|
|
321
|
+
Ahmed.S.ElAfifi <ahmed.s.elafifi@gmail.com>
|
|
322
|
+
Wonseop Kim <wonseop.kim@samsung.com>
|
|
323
|
+
Christian Oliff <christianoliff@pm.me>
|
|
324
|
+
Christian Wenz <christian@wenz.org>
|
|
325
|
+
Sean Robinson <sean.robinson@scottsdalecc.edu>
|
|
326
|
+
Jonathan <vanillajonathan@users.noreply.github.com>
|
|
327
|
+
Pierre Grimaud <grimaud.pierre@gmail.com>
|
|
328
|
+
Beatriz Rezener <beatrizrezener@users.noreply.github.com>
|
|
329
|
+
Natalia Sroka <37873210+natipo@users.noreply.github.com>
|
|
330
|
+
Wonhyoung Park <wh05.park@samsung.com>
|
|
331
|
+
Dallas Fraser <dallas.fraser.waterloo@gmail.com>
|
|
332
|
+
fecore1 <89127124+fecore1@users.noreply.github.com>
|
|
333
|
+
ygj6 <7699524+ygj6@users.noreply.github.com>
|
|
334
|
+
Simon Legner <Simon.Legner@gmail.com>
|
|
335
|
+
Vladimir Sitnikov <sitnikov.vladimir@gmail.com>
|
|
336
|
+
Anders Kaseorg <andersk@mit.edu>
|
|
337
|
+
Alex <aleksandrosansan@gmail.com>
|
package/LICENSE.txt
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright OpenJS Foundation and other contributors, https://openjsf.org/
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,5 +1,60 @@
|
|
|
1
|
-
#
|
|
1
|
+
# jQuery
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> jQuery is a fast, small, and feature-rich JavaScript library.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
For information on how to get started and how to use jQuery, please see [jQuery's documentation](https://api.jquery.com/).
|
|
6
|
+
For source files and issues, please visit the [jQuery repo](https://github.com/jquery/jquery).
|
|
7
|
+
|
|
8
|
+
If upgrading, please see the [blog post for 3.6.3](https://blog.jquery.com/2022/12/20/jquery-3-6-3-released-a-quick-selector-fix/). This includes notable differences from the previous version and a more readable changelog.
|
|
9
|
+
|
|
10
|
+
## Including jQuery
|
|
11
|
+
|
|
12
|
+
Below are some of the most common ways to include jQuery.
|
|
13
|
+
|
|
14
|
+
### Browser
|
|
15
|
+
|
|
16
|
+
#### Script tag
|
|
17
|
+
|
|
18
|
+
```html
|
|
19
|
+
<script src="https://code.jquery.com/jquery-3.6.3.min.js"></script>
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
#### Webpack / Browserify / Babel
|
|
23
|
+
|
|
24
|
+
There are several ways to use [Webpack](https://webpack.js.org/), [Browserify](http://browserify.org/) or [Babel](https://babeljs.io/). For more information on using these tools, please refer to the corresponding project's documentation. In the script, including jQuery will usually look like this:
|
|
25
|
+
|
|
26
|
+
```js
|
|
27
|
+
import $ from "jquery";
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
If you need to use jQuery in a file that's not an ECMAScript module, you can use the CommonJS syntax:
|
|
31
|
+
|
|
32
|
+
```js
|
|
33
|
+
var $ = require( "jquery" );
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
#### AMD (Asynchronous Module Definition)
|
|
37
|
+
|
|
38
|
+
AMD is a module format built for the browser. For more information, we recommend [require.js' documentation](https://requirejs.org/docs/whyamd.html).
|
|
39
|
+
|
|
40
|
+
```js
|
|
41
|
+
define( [ "jquery" ], function( $ ) {
|
|
42
|
+
|
|
43
|
+
} );
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
### Node
|
|
47
|
+
|
|
48
|
+
To include jQuery in [Node](https://nodejs.org/), first install with npm.
|
|
49
|
+
|
|
50
|
+
```sh
|
|
51
|
+
npm install jquery
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
For jQuery to work in Node, a window with a document is required. Since no such window exists natively in Node, one can be mocked by tools such as [jsdom](https://github.com/jsdom/jsdom). This can be useful for testing purposes.
|
|
55
|
+
|
|
56
|
+
```js
|
|
57
|
+
const { JSDOM } = require( "jsdom" );
|
|
58
|
+
const { window } = new JSDOM( "" );
|
|
59
|
+
const $ = require( "jquery" )( window );
|
|
60
|
+
```
|