#70 closed defect (fixed)
dojo.event.connect fires function on the same call at which it was connected
Reported by: | anonymous | Owned by: | alex |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | Core | Version: | 0.0 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
dojo.event.connect fires function on the same call at which it was connected.
e.g.
dojo.event.connect(document, "onmousedown", function (e) {
dojo.event.connect(document, "onmousedown", function (e) { alert("foo"); });
});
The alert should not be displayed on the first mousedown.
Change History (3)
comment:1 Changed 17 years ago by
Milestone: | → 0.1release |
---|---|
severity: | normal → blocker |
Version: | → 0.0 |
Note: See
TracTickets for help on using
tickets.
Not positive that this is a blocker, but it is very critical.