mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-13 17:37:07 +00:00
87942c34f9
Referencing it triggers deprecation warnings so should be updated Bug: T208921 Change-Id: I7266a067a14bfa38a998f426e18f096515b7bfa7
29 lines
569 B
JavaScript
29 lines
569 B
JavaScript
( function ( M ) {
|
|
|
|
var Watchstar = M.require( 'mobile.startup' ).Watchstar,
|
|
user = mw.user;
|
|
|
|
/**
|
|
* Toggle the watch status of a known page
|
|
* @method
|
|
* @param {Page} page
|
|
* @ignore
|
|
*/
|
|
function init( page ) {
|
|
var $container = $( '#ca-watch' );
|
|
if ( !page.inNamespace( 'special' ) ) {
|
|
// eslint-disable-next-line no-new
|
|
new Watchstar( {
|
|
api: new mw.Api(),
|
|
el: $container,
|
|
isWatched: page.isWatched(),
|
|
page: page,
|
|
funnel: 'page',
|
|
isAnon: user.isAnon()
|
|
} );
|
|
}
|
|
}
|
|
init( M.getCurrentPage() );
|
|
|
|
}( mw.mobileFrontend ) );
|