Hi team!
I am using Document Editor in a reactjs application.
How to i known a inserted page is new or not.
At first, i have one page in editor. After i save, current the first page is not new, then i insert a new page by break page action, i have a new page. I want to detect the first page is not new, and the second page is new, how to?
I have attached a property isOriginal in page object to detect new page, but this property is losing when i copy and paste a text to a page
_.forEach(this.container.documentEditor.documentHelper.pages, (page) => page.isOriginal = true)