mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 18:58:45 +00:00
29 lines
609 B
JavaScript
29 lines
609 B
JavaScript
|
( function ( M, $ ) {
|
||
|
|
||
|
var Watchstar = M.require( 'mobile.watchstar/Watchstar' ),
|
||
|
user = M.require( 'mobile.startup/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, jQuery ) );
|