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
[JobQueue] Added missing delete query.
[mediawiki.git]
/
resources
/
mediawiki.special
/
mediawiki.special.undelete.js
blob
c6e5d614ecf65c382d347c0411830fd2fc3ba7f2
1
/*
2
* JavaScript for Specical:Undelete
3
*/
4
jQuery
(
document
).
ready
(
function
( $ ) {
5
$(
'#mw-undelete-invert'
).
click
(
function
(
e
) {
6
e
.
preventDefault
();
7
$(
'#undelete input[type="checkbox"]'
).
prop
(
'checked'
,
function
(
i
,
val
) {
8
return
!
val
;
9
} );
10
} );
11
} );