1 decade ago by jaygarcia
				Hi,
I'm really new here (and to ImpactJS), but I noticed that the click event fires for the duration of mousedown, and ends with mouseup. Click events should be "mousedown" & "mouseup", like it is in the DOM.
Thoughts?
		I'm really new here (and to ImpactJS), but I noticed that the click event fires for the duration of mousedown, and ends with mouseup. Click events should be "mousedown" & "mouseup", like it is in the DOM.
Thoughts?
update : function() {
    if (ig.input.state('click')) {
        console.log('click!')
    }
    this.parent();
}
			