Ckeditor firefox NS_ERROR_FAILURE: (should I ignore it?)

I have an annoying error in firefox with CKeditor. I am getting the following error in the console

": NS_ERROR_FAILURE: Component return code: 0x80004005 (NS_ERROR_FAILURE) [nsITaskbarTabPreview.invalidate]"

This error keeps looping until I close the modal

see screenshot here as i can't attach it to post:

http://picpaste.com/pics/error-aEHNtvSH.1431614086.png

This is how I call CKeditor:

         $('#open_request').on('show.bs.modal', function ()
            {
                CKEDITOR.disableAutoInline = true;
                CKEDITOR.customConfig = 'build-config.js';
                CKEDITOR.replace('description_new_ticket');
            }
        )

      

'description_new_ticket' is a text field.

This issue only occurs in Firefox, however the toolbar and CKeditor work well.

Should I just ignore this error?

Thank you in advance.

+3


source to share


1 answer


First of all - such an error cannot be caused by CKEditor and most likely it also cannot affect CKEditor. AFAIK, these errors are usually some internal exception or addon related errors. I also found https://bugzilla.mozilla.org/show_bug.cgi?id=1127577 which seems to confirm this.



+1


source







All Articles