[Laszlo-checkins] r12325 - openlaszlo/trunk/WEB-INF/lps/lfc/kernel/dhtml
max@openlaszlo.org
max at openlaszlo.org
Wed Jan 7 00:46:24 PST 2009
Author: max
Date: 2009-01-07 00:46:22 -0800 (Wed, 07 Jan 2009)
New Revision: 12325
Modified:
openlaszlo/trunk/WEB-INF/lps/lfc/kernel/dhtml/LzSprite.js
Log:
Change 20090106-maxcarlson-4 by maxcarlson at Bank.lan on 2009-01-06 21:53:36 PST
in /Users/maxcarlson/openlaszlo/trunk-clean/WEB-INF/lps/lfc
for http://svn.openlaszlo.org/openlaszlo/trunk/WEB-INF/lps/lfc
Summary: Avoid sending ondrag events in IE
Bugs Fixed: LPP-7484
Technical Reviewer: andre.bargull at udo.edu
QA Reviewer: hminsky
Details: Ignore ondrag events.
Tests: See LPP-7484
Modified: openlaszlo/trunk/WEB-INF/lps/lfc/kernel/dhtml/LzSprite.js
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/kernel/dhtml/LzSprite.js 2009-01-07 08:43:53 UTC (rev 12324)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/kernel/dhtml/LzSprite.js 2009-01-07 08:46:22 UTC (rev 12325)
@@ -4,7 +4,7 @@
/**
* LzSprite.js
*
- * @copyright Copyright 2007-2008 Laszlo Systems, Inc. All Rights Reserved.
+ * @copyright Copyright 2007-2009 Laszlo Systems, Inc. All Rights Reserved.
* Use is subject to license terms.
*
* @topic Kernel
@@ -902,7 +902,8 @@
this.__mouseEvent('onclick', true);
return;
} else if (eventname == 'ondrag') {
- // TODO: handle these?
+ // ignore these
+ return;
}
}
More information about the Laszlo-checkins
mailing list