repo.or.cz
/
mediawiki.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Move remaining LoadBalancer classes to Rdbms
[mediawiki.git]
/
resources
/
src
/
mediawiki.special
/
mediawiki.special.undelete.js
blob
2a153e8864106731cf8d1ff911f655b0e75b1bd8
1
/*!
2
* JavaScript for Special:Undelete
3
*/
4
jQuery
(
function
( $ ) {
5
$(
'#mw-undelete-invert'
).
click
(
function
(
e
) {
6
$(
'#undelete input[type="checkbox"]'
).
prop
(
'checked'
,
function
(
i
,
val
) {
7
return
!
val
;
8
} );
9
e
.
preventDefault
();
10
} );
11
} );