-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Collapsed and Expand events based on elemental2.dom.MutationObserver #789
base: release_2.1
Are you sure you want to change the base?
Conversation
d-eggert
commented
Apr 26, 2018
- added elemental2.dom.Dom dependency
- disabled non working tests
- addresses MaterialCollapsible - additional events for Collapse / Expand. #780
- added elemental2.dom.Dom dependency - disabled non working tests
*/ | ||
private Object onMutation(MutationRecord[] records) { | ||
for (MutationRecord r : records) { | ||
System.out.println(r.target.nodeName + " " + r.attributeName + ": " + r.oldValue + " type: " + r.type); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe this should be removed 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup agreed we must remove any debug logs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ups, missed that one. sorry.
Does one of you have an idea for fixing the test case? |
Might need to check this tomorrow, as I am on Addins for today for fixing the bugs. |
This pull request should be merge later on 2.2 branch. I will create a branch for it later. Because elemental2 shouldnt be included in 2.1 - as we might have an internal changes like dom.elements etc. |
We plan to migrate our GMD widget to elemental on 2.6.0 release |