12345678910111213141516171819202122 |
- (function ($) {
- Drupal.behaviors.initColorbox = {
- attach: function (context, settings) {
- if (!$.isFunction($.colorbox)) {
- return;
- }
- $('a, area, input', context)
- .filter('.colorbox')
- .once('init-colorbox-processed')
- .colorbox(settings.colorbox);
- }
- };
- {
- $(document).bind('cbox_complete', function () {
- Drupal.attachBehaviors('#cboxLoadedContent');
- });
- }
- })(jQuery);
|