var map = {'pdf': 'print', 'fullScreen': "fullscreen", 'locales': 'localesContainers', 'basket': 'cart'};
var action = $(this).data('action');
var extra = $(this).data('extra');
+
+ // Ensure that mobile menu closes if it is open
+ $this.fluidbook.nav.closeMenu();
+
if (action == 'share') {
// Let share class handle this
return true;
//maxScrollbarLength: 60
});
},
+ closeMenu: function () {
+ this.menuAPI.close();
+ },
// getIcon: function (name) {
// var src = 'data/images/' + name + '.';
// if (this.fluidbook.support.SVG) {
});
// Zoom Out icon
- $(document).on('click', '.icon-zoomout', function () {
+ $(document).on('click', '.icon-zoomout', function (e) {
$this.fluidbook.desktop.clickZoom(e, 'out');
return false;
});