potential problem with isIE variable
Brought to you by:
asleson
taconite-parser.js
has this variable
var isIE=document.uniqueID; which is potentialy pericolous coz many ppl use it for browserdetection
due to this
in the function
function cleanAttributeName(name) {
- 481 if(isIE == false) {
- 482 return;
483 }
....
in case of value false (like it happen to me)
it return null for any attribute in FF
and all process fail !!!
i suggest put on line 482 return name;
Logged In: NO
isIE is used by Flex wrapper !!