wootook-reloaded/application/design/frontend/base/default/scripts/empire/planet/research-lab.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

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>