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.changeslist.visitedstatus.js
blob
954e074ad99d6ebce30484dc00de2178ff83bfe9
1
/*!
2
* JavaScript for Special:Watchlist
3
*/
4
(
function
(
mw
, $ ) {
5
$(
function
() {
6
$(
'.mw-changeslist-line-watched .mw-title a'
).
on
(
'click'
,
function
() {
7
$(
this
)
8
.
closest
(
'.mw-changeslist-line-watched'
)
9
.
removeClass
(
'mw-changeslist-line-watched'
);
10
} );
11
} );
12
}(
mediaWiki
,
jQuery
) );