Dietrich Streifert schrieb:
Hello All,
in FireFox 1.0.7 I get the following message:
Error: from has no properties
Sourcefile: http://qdr/source/script/managers/QxToolTipManager.js
Line: 109
The error occurs in a relative complex page where I use some other
non-qooxdoo widgets (ActiveWidgets grid). I know that this is maybe due
to the incompatibilites of qooxdoo and ActiveWidgets stuff.
Anyway: If an additional test is done in line 109 to assure from is
valid before the method contains is called, the errormessage is avoided.
This is a simple fix and should not do any harm to the qooxdoo logic.
Please apply this fix. Unified diff is attached.
done.
Sebastian
Thank you.
Best regards.
------------------------------------------------------------------------
--- source/script/managers/QxToolTipManager.js.orig 2005-11-22
09:39:48.264234000 +0100
+++ source/script/managers/QxToolTipManager.js 2005-11-22 09:40:16.328958000
+0100
@@ -106,7 +106,7 @@
};
// If the destination target exists and the target contains it
- if(to && from.contains(to)) {
+ if(to && from && from.contains(to)) {
return;
};
-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc. Get Certified Today
Register for a JBoss Training Course. Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628&alloc_id=16845&op=click
_______________________________________________
Qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel