wootook-reloaded/application/design/install/base/default/scripts/page/html/navigation.phtml
Gregory PLANCHAT 66805034a6 Configuration & Layout architecture updates
Fixed production bug
Fixed styles
Updated Action Controller

Signed-off-by: Gregory PLANCHAT <g.planchat@gmail.com>
2012-01-13 23:36:03 +01:00

18 lines
499 B
PHTML

<div class="navigation">
<?php foreach ($this->getAllPartials() as $partial):?>
<?php echo $partial->render()?>
<?php endforeach?>
<span class="last"></span>
</div>
<script type="text/javascript">
//<![CDATA[
(function($){
var navigation = $('.navigation');
$('.navigation-node', navigation).hover(function(e){
$('.navigation-link,.last', $(this)).show();
}, function(e){
$('.navigation-link,.last', $(this)).hide();
});
})(jQuery);
//]]>
</script>