hi folks,please help me.I stuck with a suck problem, i put the codemirror plugin in ckeditor\js\myplugins ,not in the ckeditor\plugins ,but it cannot work.i guess the path(/js/myplugins/sourcedialog/) is wrong,but i tried all,i still cannot work.
Any assistance would be greatly appreciated.
test.html
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="../../../samples/sample.css">
<script src="../../../ckeditor.js"></script>
<script src="../../../config.js"></script>
</head>
<body>
<textarea id="editor1" name="editor1"></textarea>
<script>
CKEDITOR.plugins.addExternal( 'codemirror', '/js/myplugins/sourcedialog/', 'plugin.js' );
CKEDITOR.replace('editor1',{
language: 'en',
width:850,height:450,
extraPlugins: 'codemirror',
skin: 'office2013',
removeButtons: 'About'
});
</script>
</body>
</html>
