By Andy on Saturday, 17 October 2020
Posted in Technical Issues
Replies 3
Likes 0
Views 705
Votes 0
I'm using the EasySocial Toolbar Module... when viewed on a small screen mobile, the menu collapses into the single icon which when clicked brings up a screen overlay with options.

My question is can I adjust a file somewhere to stop that behaviour?

My implementation of the toolbar is going to be such that it has very few items on the toolbar - and so it will fit on a small screen just as well as a large one - and I'd like to keep that view constant for the user regardless of the screen size they have.

Thanks!
Hello Andy,

You can modify the file /components/com_easysocial/themes/wireframe/toolbar/default.js and remove the codes below:


$('[data-es-toolbar-toggle]').on('click', function() {
// Get the menu contents
var contents = $('[data-es-toolbar-menu]').html();

EasySocial.dialog({
"title": "<?php echo JText::_('COM_EASYSOCIAL_TOOLBAR_MENU_TITLE', true);?>",
"content": contents,
"width": '80%',
"height": '80%'
});
});
·
Saturday, 17 October 2020 14:39
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks as always for your guidance and expertise!
·
Saturday, 17 October 2020 21:51
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome
·
Sunday, 18 October 2020 00:02
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post