This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
|
$(function() {
|
|
$.each($('.ckeditor'), function(i, v) {
|
|
CKEDITOR.replace(v.id, {
|
|
// toolbar :[
|
|
// ['Source'],
|
|
// ['Bold','Italic','Underline','Strike','-','Image'],
|
|
// ],
|
|
height: 200
|
|
});
|
|
});
|
|
}) |