Hi Matt,
Thanks for being an early adopter of Q.js.
The problem you are describing is part of a wider fix for IE in
general.
Since version 0.0.7.2 all activity concerning Q should be wrapped in
an observer for 'q:loaded'.
Where you did this before:
Q.set({ image_path: "../images/q" });
Informer = new Q.Informer();
You should do this now:
document.observe('q:loaded', function() {
Q.set({ image_path: "../images/q" });
Informer = new Q.Informer();
});
We had to implement this to fix some serious issues with IE7 and IE8.
It had to do with the dynamic CSS system and there was no other
solution.
Check out the documentation on the Q.Base and Q core here for more
details:
http://qutensil.com/pages/qbase
And if you have any questions about it, please don't hesitate to ask!
Greetings.
Wout