Orbit slider inside foundation reveal modal sets height 0 some reason. Here is the simple way to fix that issue:
$(document).on('opened.fndtn.reveal', '[data-reveal]', function(){
$(window).trigger('resize');
});
This blog is about technical issues, CSS trics and javascript examples. It will give you easiest way of solving the issues. It contains frequently asked questions(faqs).
$(document).on('opened.fndtn.reveal', '[data-reveal]', function(){
$(window).trigger('resize');
});