aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.effects.blind.js
Commit message (Collapse)AuthorAgeFilesLines
* Protect all copyright notices against minificationJo Liss2012-04-021-1/+1
| | | | | | | For instance, this is useful for the jquery-ui-rails gem, which does not use jQuery UI's own minification, but relies on Rails to minify the files where necessary. Rails in turn uses UglifyJS for JS and YUI for CSS, both of which respect the /*! ... */ convention.
* Updated copyright year.Scott González2012-03-081-1/+1
|
* Use hard tabs for indentation consistentlyTrey Hunner2012-02-271-1/+1
|
* Effects: Whitespace fixes & using parseFloat instead of parseIntCorey Frang2012-01-051-1/+1
|
* Effects: Blind effect bugfix - Pull Request #563 - No Ticketrozwell2012-01-051-4/+6
|
* Effects.*: DRY the complete callback execution into the 'done' callback ↵gnarf2011-06-211-5/+2
| | | | passed into an effect
* Effects.*: Style Guidancegnarf2011-06-211-8/+8
|
* Effects.*: Updating Effect Method API to avoid duplicating the queue call - ↵gnarf2011-06-211-58/+54
| | | | Fixes #7318 - Add the queue functions to $.fn.effect()
* effects.core: Convert elements height/width to px and restore after ↵tomykaira2011-06-091-1/+1
| | | | animation in all effects. Fixed #5245 - Relative width elements break when wrapped for effects
* effects.blind: Save the wrapper status if already wrapped. Fixes #6245 - ↵tomykaira2011-05-251-1/+6
| | | | position: absolute is lost when .stop() is used with .show('blind').
* Effects (blind): direction now accepts up/down/left/right as well as ↵gnarf2011-05-031-13/+42
| | | | vertical(up) and horizontal(left) - Fixes #4480 - Invert the blind effect.
* Effects: Moved effects to $.effects.effect[] and deprecated use of ↵gnarf2011-03-151-1/+1
| | | | $.effects[]. Fixes #7103 - Effects: Move effects to $.effects.effect[].
* effects.*: style guidancegnarf2011-03-061-13/+18
|
* effects.*: More Style Guidancegnarf2011-03-061-2/+2
|
* Effects: General Code Cleanupgnarf2011-03-041-10/+8
|
* Starting to clean up the internal API for animationsgnarf2011-03-021-10/+10
|
* Updated copyright year.Scott González2011-01-171-1/+1
|
* Effects: set right/bottom to 'auto' so effects work with dir=rtl. Fixed ↵Kevin Dalman2010-12-131-1/+1
| | | | #6736 - Bug in slide effect when dir=rtl and has position.right.
* All: Added http://jqueryui.com/about to header comments.Scott González2010-07-141-1/+1
|
* All: Define a local undefined variable inside the main closure.Scott González2010-07-131-1/+1
|
* Updated copyright headers to make it clear that you can choose between MIT ↵Scott González2010-07-091-3/+3
| | | | and GPLv2. Also added a link to http://jquery.org/license.
* Happy New YearRichard Worth2010-01-201-1/+1
|
* renamed all ui.*.js files to jquery.ui.*.js, all effects.*.js files to ↵Richard Worth2009-09-171-0/+49
jquery.effects.*.js per announcement and discussion here http://groups.google.com/group/jquery-ui-dev/msg/d565a0c56e0cb935
9/stable28'>backport/47339/stable28 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/settings/js/admin.js
blob: 177f6d3f7f4323b9a11f28c8dea9d1e3965263d7 (plain)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305