Closed (fixed)
Project:
Thickbox
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
20 Apr 2009 at 22:03 UTC
Updated:
5 May 2009 at 08:50 UTC
When your thickbox only keeps loading with the black (opacity) screen. Then it could be because you are using the latest jquery 1.3.1.
FIX: open modules/thickbox/thickbox.js
delete the two @ signs in the source
I had them on
1) rule 81
TB_TempArray = $('a[@rel=' + imageGroup + ']').get();
REPLACE WITH
TB_TempArray = $('a[rel=' + imageGroup + ']').get();
AND
2) rule 110
var tb_links = $('a[@class="thickbox"]');
REPLACE WITH
var tb_links = $('a[class="thickbox"]');
Go and clear the cache trough the admin and everything should work like a charm.
[this is not a issue but a fix, didnt know where else to post it]
Comments
Comment #1
frjo commentedThis has been committed to 6-dev already. See https://drupal.org/node/434660.
Comment #2
frjo commented