2019-12-19 20:10:09 +00:00
|
|
|
var BODY_NOTIFICATIONS_REVEAL_CLASS = 'navigation-enabled secondary-navigation-enabled';
|
2017-07-12 15:12:40 +00:00
|
|
|
|
2019-10-04 15:05:37 +00:00
|
|
|
/**
|
|
|
|
* Wire up the main menu
|
|
|
|
*/
|
|
|
|
function init() {
|
2019-10-01 21:40:49 +00:00
|
|
|
|
|
|
|
// See I09c27a084100b223662f84de6cbe01bebe1fe774
|
|
|
|
// will trigger every time the Echo notification is opened or closed.
|
|
|
|
// This controls the drawer like behaviour of notifications
|
|
|
|
// on tablet in mobile mode.
|
|
|
|
mw.hook( 'echo.mobile' ).add( function ( isOpen ) {
|
|
|
|
if ( isOpen ) {
|
2019-12-19 20:10:09 +00:00
|
|
|
$( document.body ).addClass( BODY_NOTIFICATIONS_REVEAL_CLASS );
|
2019-10-01 21:40:49 +00:00
|
|
|
} else {
|
2019-12-19 20:10:09 +00:00
|
|
|
$( document.body ).removeClass( BODY_NOTIFICATIONS_REVEAL_CLASS );
|
2019-10-01 21:40:49 +00:00
|
|
|
}
|
|
|
|
} );
|
2019-10-04 15:05:37 +00:00
|
|
|
}
|
2017-07-12 15:12:40 +00:00
|
|
|
|
2019-10-04 15:05:37 +00:00
|
|
|
module.exports = {
|
|
|
|
init: init
|
|
|
|
};
|