colorbox.js 415 B

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