mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
[FIX] Cannot read property getComputedStyle in chrome
This commit is contained in:
@@ -53,8 +53,11 @@ openerp.web_ckeditor4 = function(instance)
|
|||||||
//cleaning up
|
//cleaning up
|
||||||
CKEDITOR.tools.setTimeout = function(func, milliseconds, scope, args, ownerWindow)
|
CKEDITOR.tools.setTimeout = function(func, milliseconds, scope, args, ownerWindow)
|
||||||
{
|
{
|
||||||
|
if(scope && scope.editor && scope.editor.status == 'destroyed')
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
var result = ckeditor_setTimeout_org.apply(this, arguments);
|
var result = ckeditor_setTimeout_org.apply(this, arguments);
|
||||||
console.log(arguments);
|
|
||||||
if(!ckeditor_timeouts[scope])
|
if(!ckeditor_timeouts[scope])
|
||||||
{
|
{
|
||||||
ckeditor_timeouts[scope] = [];
|
ckeditor_timeouts[scope] = [];
|
||||||
|
|||||||
Reference in New Issue
Block a user