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.
orbit-4-1/app/assets/javascripts/ckeditor/replace/site_info.js

11 lines
255 B
JavaScript

$(function() {
$.each($('.ckeditor'), function(i, v) {
CKEDITOR.replace(v.id, {
// toolbar :[
// ['Source'],
// ['Bold','Italic','Underline','Strike','-','Image'],
// ],
height: 200
});
});
})