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 was archived by the owner on Nov 19, 2018. It is now read-only.
Just realized that ajax-form suffers from Polymer/platform#88. Chrome is not affected, and sometimes Firefox loads, sometimes it doesn't. Removing the "action", "enctype" and "method" entries from the element's attribute specification fixes the issue. In hindsight, I'm not sure why I included these attributes in the first place, as they apparently are not necessary (ignorance?).
I'm certain this wasn't an issue until recently. Did something internal to Polymer change that would cause [including native properties in a <polymer-element>'s attribute specification to prevent resolution of the <body>? Not sure.
I intend to have this fixed in 1.2.0.
The text was updated successfully, but these errors were encountered:
This is serious enough to warrant a hotfix release, so this will be pushed out with 1.1.1 in the very near future.
I also found out that the call to unwrap(form) when converting the <form> fields to a FormData object now causes a Polymer assertion error for all browsers other than Chrome. I'm not 100% sure why this is, but it seems safe to remove the unwrap now since the underlying issue that required this call was fixed in Polymer 0.3.4 via googlearchive/ShadowDOM#463.
Just realized that ajax-form suffers from Polymer/platform#88. Chrome is not affected, and sometimes Firefox loads, sometimes it doesn't. Removing the "action", "enctype" and "method" entries from the element's attribute specification fixes the issue. In hindsight, I'm not sure why I included these attributes in the first place, as they apparently are not necessary (ignorance?).
I'm certain this wasn't an issue until recently. Did something internal to Polymer change that would cause [including native properties in a
<polymer-element>
'sattribute
specification to prevent resolution of the<body>
? Not sure.I intend to have this fixed in 1.2.0.
The text was updated successfully, but these errors were encountered: