ice
ice copied to clipboard
trackchange default off
Thanks for lovely plugin Can we make track change in off mode by default, and can enabled by a user when he wants so?
Set isTracking to false in the ice configuration in the tinymce init setttings
{
plugins: [ ice icesearchreplace ],
toolbar: .....
ice: {
user: { name: username, id: userid },
isTracking: false,
}
}
How to destroy the ice api, as there is a requirement to generate the element dynamically and the element are created inside a loop. While calling the window.tracker = new ice.InlineChangeEditor inside loop it is working but while entering "space" it takes multiple spaces. So need to destroy the ice init before re-init. Is there any such method available to destroy the object??