Modal- keep navbar/menu static

Hi,

Very simply- I want to put my page into a modal-slide up,that keeps the menu bar static.

In other words- when the modal opens, a menu/top bar does not slide up.

Here is my directive:

$ionicModal.fromTemplateUrl(‘app/components/stores/stores.html’, {
scope: $scope,
animation: ‘slide-in-up’
}).then(function(modal){$scope.modal = modal;});

$scope.refineevent = function(){$scope.modal.show();};

$scope.closeModal = function(){$scope.modal.hide();};

$scope.$on(‘modal.shown’, function(){console.log(‘Modal is shown!’);});

}

Can anyone please advise? Been stuck for weeks