colorbox_style.js 614 B

12345678910111213141516171819202122
  1. (function ($) {
  2. Drupal.behaviors.initColorboxDefaultStyle = {
  3. attach: function (context, settings) {
  4. $(context).bind('cbox_complete', function () {
  5. // Only run if there is a title.
  6. if ($('#cboxTitle:empty', context).length == false) {
  7. $('#cboxLoadedContent img', context).bind('mouseover', function () {
  8. $('#cboxTitle', context).slideDown();
  9. });
  10. $('#cboxOverlay', context).bind('mouseover', function () {
  11. $('#cboxTitle', context).slideUp();
  12. });
  13. }
  14. else {
  15. $('#cboxTitle', context).hide();
  16. }
  17. });
  18. }
  19. };
  20. })(jQuery);