colorbox.js 373 B

1234567891011121314151617181920
  1. (function ($) {
  2. Drupal.behaviors.initColorbox = {
  3. attach: function (context, settings) {
  4. if (!$.isFunction($.colorbox)) {
  5. return;
  6. }
  7. $('.colorbox', context)
  8. .once('init-colorbox')
  9. .colorbox(settings.colorbox);
  10. }
  11. };
  12. {
  13. $(document).bind('cbox_complete', function () {
  14. Drupal.attachBehaviors('#cboxLoadedContent');
  15. });
  16. }
  17. })(jQuery);