You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.
Saw this a while back... was hoping by now somehow magically this was no longer an issue. But I see it again today. I have a 'supersonic' (appgyver) hybrid app, and I am using ionic for the nav-bar and navigation functionality. I really want to use material design though for the forms elements and such. And the form elements render OK, BUT clicking on any of the form elements throws this error. Seems ionic is choking when events are generated by angularMaterial components:
UNSPECIFIED_EVENT_TYPE_ERR: DOM Events Exception 0: The Event's type was not specified by initializing the event before the method was called.
dispatchEventcommon.js:37572:409
ncommon.js:37572:409
tcommon.js:37572:229
lcommon.js:37572:1460
NOTE that this common' file is a concat'ed file with ionic.js in there of course. Looks like it's right in this bit below. Anyway, question is .. is there a way to stop events in an angularMaterial form from propagating? This error is preventing me form submitting my form or doing any actions on control taps etc. Anyone see this?
Saw this a while back... was hoping by now somehow magically this was no longer an issue. But I see it again today. I have a 'supersonic' (appgyver) hybrid app, and I am using ionic for the nav-bar and navigation functionality. I really want to use material design though for the forms elements and such. And the form elements render OK, BUT clicking on any of the form elements throws this error. Seems ionic is choking when events are generated by angularMaterial components:
UNSPECIFIED_EVENT_TYPE_ERR: DOM Events Exception 0: The Event's type was not specified by initializing the event before the method was called.
dispatchEventcommon.js:37572:409
ncommon.js:37572:409
tcommon.js:37572:229
lcommon.js:37572:1460
NOTE that this common' file is a concat'ed file with ionic.js in there of course. Looks like it's right in this bit below. Anyway, question is .. is there a way to stop events in an angularMaterial form from propagating? This error is preventing me form submitting my form or doing any actions on control taps etc. Anyone see this?
function i(e) {
return ("submit" != e.target.type || 0 !== e.detail) && (ionic.scroll.isScrolling && ionic.tap.containsOrIsTextInput(e.target) ||!e.isIonicTap&&!ionic.tap.requiresNativeClick(e.target)) ? (e.stopPropagation(), ionic.tap.isLabelWithTextInput(e.target) || e.preventDefault(), !1) : void 0
}
The text was updated successfully, but these errors were encountered: