Skip to content
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

check functions for equality and clone props and content properties #44

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

valoricDe
Copy link

this will result in much less rerendering and thus less or none cursor jumping

if(typeof c1 === 'function' && typeof c2 === 'function') {
return c1.toString() === c2.toString();
}
if(c1.hasOwnProperty('items') && c2.hasOwnProperty('items')) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the check for items is possibly unnecessary as the config is cloned before given to tinymce so the items properties are not modified anymore

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants