Hi everyone!
I faced next issue in my ASP.NET MVC 4 web application with Razor enguine.
My CKEditor had worked fine tille I applied MVC Bundles in my app with CDN and optimizations for jquery :
BundleTable.EnableOptimizations = true; bundles.UseCdn = true;
Now whenever I open web page with CKEditor I got an error
Error: Unable to set property 'dir' of undefined or null reference
If I go to error detail it shows next line in JS file
this[n].dir=this.rtl[n]?"rtl":"ltr"
How to eleminate this error?