Changes between Initial Version and Version 2 of Ticket #18388
- Timestamp:
- Nov 26, 2014, 10:34:38 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18388 – Description
initial v2 5 5 User Rick Lacy on the community forum writes: 6 6 7 In _ButtonMixin.js there is an internal __onClickmethod. When this gets a hold of the click event, it tries to call the click method on some hidden value dom node. The trouble is, I don't think passing e to this click method does anything. The real event is clobbered and by the time your code executes, it's this new event.7 In _ButtonMixin.js there is an internal `__onClick` method. When this gets a hold of the click event, it tries to call the click method on some hidden value dom node. The trouble is, I don't think passing e to this click method does anything. The real event is clobbered and by the time your code executes, it's this new event. 8 8 9 9 Workaround: 10 10 11 {{{ 11 12 __onClick: function(/*Event*/ e){ 12 13 /* summary: … … 25 26 return false; 26 27 }, 28 }}}