Closed mbgonicus closed 7 years ago
Please can you try editing qx/event/handler/Pointer.js
and changing the class comment to include @require(qx.event.type.dom.Pointer)
, eg the class should start like this:
/**
* Unified pointer event handler.
* @require(qx.event.dispatch.DomBubbling)
* @require(qx.event.type.Pointer) // load-time dependency for early native events
* @require(qx.event.type.dom.Pointer)
*/
qx.Class.define("qx.event.handler.Pointer",
{
extend : qx.event.handler.PointerCore,
Hi, thanks for the fast reply! I added that require line and will observe if the error appears again.
That actually solved it, thank you very much!
How do we deal with this? Shall I prepare a PR for the main qooxdoo repo?
no leave it with me, I'll put it in with a PR Im preparing for a couple of similar issues. Glad it's fixed it for you!
Hi,
we are using the cli tool with
qx compile --watch
for a new project. When reloading the application we often get this error:The line in question is:
I estimate it happens every other reload, but sometimes it happens multiple reloads in a row and then we can reload it for like five times and don't get an error. So it is really seems to appear random.
Is someone having this issue too?