I've couple of custom ckeditor plugin which loading custom css files for there own styling. I'm adding custom style sheet using following code,
cssStyles.push("/css/custom.css");
Its working fine with CKeditor 3.6, but after upgrading ckeditor from 3.6 to 4.4.1, in IE-9 & IE -8 its throwing following error, 'Not enough storage is available to complete this operation.' As per my investigation I've found that IE can't load more than 30 files, so I modified my code like,
editor.addContentsCss && editor.addContentsCss( CKEDITOR.plugins.getPath( '/css/custom.css' );
Its working fine in Chrome, even in IE-11, but in IE-09 its throwing an error - 'invalid argument'.
So is there any way to aggregate all css files or any plugin/patch to get rid of?