mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-15 02:13:49 +00:00
51 lines
1.2 KiB
JavaScript
51 lines
1.2 KiB
JavaScript
|
/*
|
||
|
* Warn people if they're trying to switch to desktop but have cookies disabled.
|
||
|
*/
|
||
|
|
||
|
( function ( M, $ ) {
|
||
|
|
||
|
var popup = M.require( 'mobile.startup/toast' );
|
||
|
|
||
|
/**
|
||
|
* Checks whether cookies are enabled
|
||
|
* @method
|
||
|
* @ignore
|
||
|
* @return {boolean} Whether cookies are enabled
|
||
|
*/
|
||
|
function cookiesEnabled() {
|
||
|
// If session cookie already set, return true
|
||
|
if ( $.cookie( 'mf_testcookie' ) === 'test_value' ) {
|
||
|
return true;
|
||
|
// Otherwise try to set mf_testcookie and return true if it was set
|
||
|
} else {
|
||
|
$.cookie( 'mf_testcookie', 'test_value', {
|
||
|
path: '/'
|
||
|
} );
|
||
|
return $.cookie( 'mf_testcookie' ) === 'test_value';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* An event handler for the toggle to desktop link.
|
||
|
* If cookies are enabled it will redirect you to desktop site as described in
|
||
|
* the link href associated with the handler.
|
||
|
* If cookies are not enabled, show a toast and die.
|
||
|
* @method
|
||
|
* @ignore
|
||
|
* @return {boolean|undefined}
|
||
|
*/
|
||
|
function desktopViewClick() {
|
||
|
if ( !cookiesEnabled() ) {
|
||
|
popup.show(
|
||
|
mw.msg( 'mobile-frontend-cookies-required' ),
|
||
|
'error'
|
||
|
);
|
||
|
// Prevent default action
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$( '#mw-mf-display-toggle' ).on( 'click', desktopViewClick );
|
||
|
|
||
|
}( mw.mobileFrontend, jQuery ) );
|