1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
   |  
$(document).ready(function () {	
 
	// Ckeditor					
		var config = {
			toolbar:
			[
				['Source','-','Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat','-','Link','Unlink'],
				['NumberedList','BulletedList','-','Outdent','Indent','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
				'/',
				['TextColor','BGColor'],[ 'Image','Table','HorizontalRule','Smiley','SpecialChar' ],['Styles','Format','Font','FontSize']
			]
		};
 
		$('.ckeditor_page').ckeditor(config);
 
}); | 
Partager