Advertisement
Guest User

Plik TM categoriess tpl

a guest
Oct 22nd, 2012
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <!-- TM Categories -->
  2. <script type="text/javascript" src="{$module_dir}superfish.js"></script>
  3. {literal}
  4. <script type="text/javascript">
  5. $(document).ready(function() {
  6. $('ul.sf-menu').superfish({
  7. delay: 1000,
  8. animation: {opacity:'show',height:'show'},
  9. speed: 'fast',
  10. autoArrows: false,
  11. dropShadows: false
  12. });
  13. });
  14. </script>
  15. {/literal}
  16. <div id="tmcategories">
  17. <ul id="cat" class="sf-menu">
  18. {foreach from=$blockCategTree.children item=child name=blockCategTree}
  19. {if $smarty.foreach.blockCategTree.last}
  20. {include file="$branche_tpl_path" node=$child last='true'}
  21. {else}
  22. {include file="$branche_tpl_path" node=$child}
  23. {/if}
  24. {/foreach}
  25. </ul>
  26. </div>
  27. <!-- /TM Categories -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement