Fixed production bug Fixed styles Updated Action Controller Signed-off-by: Gregory PLANCHAT <g.planchat@gmail.com>
19 lines
No EOL
582 B
PHTML
19 lines
No EOL
582 B
PHTML
<div class="shipyard item-list" id="reasearch-lab">
|
|
<h1><?php echo $this->__('Research Laboratory')?></h1>
|
|
<?php echo $this->getPartial('item-list.items')->render()?>
|
|
<div class="clear"></div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
/*<![CDATA[*/
|
|
(function($){
|
|
$(document).ready(function(){
|
|
var items = jQuery('#reasearch-lab .item');
|
|
jQuery('.image', items).hover(function(e){
|
|
jQuery('.details', jQuery(this).parent()).show();
|
|
}, function(e){
|
|
jQuery('.details', jQuery(this).parent()).hide();
|
|
});
|
|
});
|
|
})(jQuery);
|
|
/*]]>*/
|
|
</script>
|