HosipLan

Untitled

Aug 24th, 2013
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $.nette.ext('fancybox', {
  2.     init: function () {
  3.         this.open($('body')); // otevře fancybox při načtení stránky
  4.     },
  5.     success: function (payload) {
  6.         var snippets;
  7.         if (!payload.snippets || !(snippets = this.ext('snippets'))) return;
  8.  
  9.         for (var id in payload.snippets) {
  10.             this.open(snippets.getElement(id));
  11.         }
  12.     }
  13. }, {
  14.     open: function (el) {
  15.         el.find('.fancybox').each(function () {
  16.             $.fancybox.open($(this));
  17.         });
  18.     }
  19. });
Advertisement
Add Comment
Please, Sign In to add comment