Guest User

Untitled

a guest
Aug 30th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <script type="text/javascript">
  2. jQuery(function ($){
  3. $(document).ready(function(){
  4. $(".fancybox-thumbs").fancybox({
  5. padding: 0,
  6. margin: 10,
  7. closeBtn : true,
  8. helpers :
  9. {
  10. title: {
  11. position: 'top',
  12. },
  13. thumbs:
  14. {
  15. width : 40,
  16. height : 40,
  17. }
  18. },
  19. beforeShow : function() {
  20. var alt = this.element.find('img').attr('alt');
  21. this.inner.find('img').attr('alt', alt);
  22. this.title = alt;
  23. },
  24. });
  25. });
  26. });
  27. </script>
Add Comment
Please, Sign In to add comment