AKS
AKS

Reputation: 55

How do i set custom path for browse server in CHEditor

I want to set a custom path for browse server in CHEditer below is my code but did not work. anyone have an idea how to resolve.

<script type="text/javascript">
    var CKEDITOR_BASEPATH = 'http://demo.azureedge.net/demostorage/';
</script>
<script src="~/Scripts/ckeditor/ckeditor.js"></script>

Please refer below link to see what error I am facing.

https://i.sstatic.net/rURR4.png

Upvotes: 0

Views: 63

Answers (1)

Alex Kudryashev
Alex Kudryashev

Reputation: 9470

CKEDITOR_BASEPATH must point to a folder where config.js and lang and plugins folders are located. I reproduced the eroor. In my case c is an object and c[a] is undefined (a == "en" in my case)

Upvotes: 1

Related Questions