Im trying to relaunch the feather editor with a new image.
So the code below loads fine the first time the editor is opened and launchStatus is equal to true
var launchStatus = self.featherEditor.launch({ image: 'image_to_edit_aviary', url :image_1.jpg, noCloseButton: true, hideWaitIndicator : true });
Now if i change the url of the image and relaunch the editor launchStatus is now false and the editor doesn't load. but if i try launching a second time with the new image it loads fine. Anyone experience anything similar?
var launchStatus = self.featherEditor.launch({ image: 'image_to_edit_aviary', url :image_2.jpg, noCloseButton: true, hideWaitIndicator : true });