﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
14610	Notification plugin Cannot read property 'getClientRect' of null	Stan		"== Steps to reproduce ==

1. I have overlay popup window with bigger size of CK with Empty Toolbar. Other config is: removePlugins: ""autosave,embed,embedbase,notificationaggregator,notification,toolbar,elementspath,backup,uploader,charcount,stat""
2. After confirm button I copy content of this CK to page by this code:

{{{
if (CKEDITOR.instances['ck'] && CKEDITOR.instances[elemName]) {
        var data = CKEDITOR.instances.e1.getData();

        var config = CKEDITOR.instances[elemName].config;
        config.allowedContent = {
            // Allow all content.
            $1: {
                elements: CKEDITOR.dtd,
                attributes: true,
                styles: true,
                classes: true
            }
        };
        CKEDITOR.instances[elemName].destroy(true);
        CKEDITOR.replace(elemName, config);

        CKEDITOR.instances[elemName].setData( data);

        var editorText = document.getElementById(elemName);
        editorText.value = data;
    }
}}}

3. Content is copied, but after few seconds I have error in console: 
notification/plugin.js:617 Uncaught TypeError: Cannot read property 'getClientRect' of null


== Expected result ==
No errors.
== Actual result ==
notification/plugin.js:617 Uncaught TypeError: Cannot read property 'getClientRect' of null
== Other details (browser, OS, CKEditor version, installed plugins) ==
CK 4.5.8, Chrome 50.0, Win 8.1, autosave plugin"	Bug	closed	Normal		General		invalid		
