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
Add a way for packagers to override some installation details
[mediawiki.git]
/
resources
/
mediawiki.special
/
mediawiki.special.undelete.js
blob
33b802754d08ba37aba1e167e2ad95f51147254a
1
/*
2
* JavaScript for Specical:Undelete
3
*/
4
jQuery
(
document
).
ready
(
function
( $ ) {
5
$(
'#mw-undelete-invert'
).
click
(
function
(
e
) {
6
e
.
preventDefault
();
7
$(
'#undelete'
).
find
(
'input:checkbox'
)
8
.
prop
(
'checked'
,
function
(
i
,
val
) {
return
!
val
; } );
9
} );
10
} );