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 May 29, 2019. It is now read-only.
I haven't looked through the entire code base, but in the tabs module I found that the checks for tab-heading look for an attribute called tab-heading or data-tab-heading or a tag also called tab-heading or data-tab-heading. The correct prefixed version of the tag name should probably be x-tab-heading (which is what web components will use), not data-tab-heading (which seems to have no basis as a tag name in the current HTML spec).
AngularJS is less strict about the distinction and simply strips x- and data- prefixes from attribute names and tag names alike. AngularUI should probably adopt this behaviour and simply accept x- prefixed attribute names and tag names in addition to the data- prefixed ones it already handles.
Maybe this logic could be factored out into a utility function.
The text was updated successfully, but these errors were encountered:
I don't have a dog in this race any more because I have pretty much abandoned AngularJS at this point. If nobody else takes any interest, feel free to close this issue.
I haven't looked through the entire code base, but in the tabs module I found that the checks for
tab-heading
look for an attribute calledtab-heading
ordata-tab-heading
or a tag also calledtab-heading
ordata-tab-heading
. The correct prefixed version of the tag name should probably bex-tab-heading
(which is what web components will use), notdata-tab-heading
(which seems to have no basis as a tag name in the current HTML spec).AngularJS is less strict about the distinction and simply strips
x-
anddata-
prefixes from attribute names and tag names alike. AngularUI should probably adopt this behaviour and simply acceptx-
prefixed attribute names and tag names in addition to thedata-
prefixed ones it already handles.Maybe this logic could be factored out into a utility function.
The text was updated successfully, but these errors were encountered: