Skip to content
Snippets Groups Projects
Commit c51733a6 authored by Stanislas Rolland's avatar Stanislas Rolland
Browse files

[BUGFIX] RTE: In IE, the pasting pad sometimes shows an error page

In IE, the pasting pad for plain text pasting sometimes shows an
error page.
Apparently, a timing issue.

Releases: master, 6.2
Resolves: #62658
Change-Id: Idb34ea6bc00d6020da637addee42cfd2db2d87f3
Reviewed-on: http://review.typo3.org/33758


Reviewed-by: default avatarStanislas Rolland <typo3@sjbr.ca>
Tested-by: default avatarStanislas Rolland <typo3@sjbr.ca>
parent 622926a2
Branches
Tags
No related merge requests found
......@@ -413,7 +413,8 @@ HTMLArea.PlainText = Ext.extend(HTMLArea.Plugin, {
this.buildButtonConfig('Cancel', this.onCancel)
]
});
this.show();
// Apparently, IE needs sometime before being able to show the iframe
this.show.defer(100, this);
},
/*
* Handler invoked after the pasting pad iframe has been rendered
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment