mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-17 19:21:39 +00:00
e3bdad20bb
Bug: T205592 Change-Id: Ia107b13d4f658ce7cc077ca7337530f3e448c522
24 lines
825 B
JavaScript
24 lines
825 B
JavaScript
( function ( M, config ) {
|
|
var shareIcon = M.require( 'skins.minerva.share/shareIcon' ),
|
|
features = config.get( 'wgMinervaFeatures', {} );
|
|
|
|
/**
|
|
* Checks whether shareIcon is available for given user agent
|
|
*
|
|
* @return {boolean}
|
|
*/
|
|
function isShareAvailable() {
|
|
return navigator.share !== undefined;
|
|
}
|
|
|
|
// check if browser supports share feature and the feature is enabled
|
|
if ( isShareAvailable() && features.shareButton ) {
|
|
// Because the page actions are floated to the right, their order in the
|
|
// DOM is reversed in the display. The watchstar is last in the DOM and
|
|
// left-most in the display. Since we want the download button to be to
|
|
// the left of the watchstar, we put it after it in the DOM.
|
|
shareIcon( navigator ).$el.insertAfter( '#ca-watch' );
|
|
}
|
|
|
|
}( mw.mobileFrontend, mw.config ) );
|