Open makapacs opened 12 years ago
Hi,
Second issue was when executing function 'fixTextShadows()' the following line:
for (var i in rules) {
The issue was that an array/list 'rules' contained besides a rule also some function making an IE Script error:
'selector' is null or not an object
Solution replaced above listed for loop line with the following:
for (var i = 0; i < rules.length; i++) {
I hope this helps.
Margots
Hi,
Second issue was when executing function 'fixTextShadows()' the following line:
The issue was that an array/list 'rules' contained besides a rule also some function making an IE Script error:
Solution replaced above listed for loop line with the following:
I hope this helps.
Margots