Skip to content
This repository was archived by the owner on Mar 14, 2023. It is now read-only.

Latest commit

 

History

History
24 lines (21 loc) · 711 Bytes

readme.md

File metadata and controls

24 lines (21 loc) · 711 Bytes

Audio

Installation

  • Copy the folder audio to ckeditor/plugins folder
  • Change config.js to add the plugin:
CKEDITOR.editorConfig = function( config )
{
	// Declare the additional plugin 
	config.extraPlugins = '**audio**';

	// Add the button to toolbar
	config.toolbar = [ 
	['Templates', 'Styles','Format','Font','FontSize','TextColor','BGColor','Maximize','Image'], 
	['Source'], 
	['Bold','Italic','Underline','Strike','-','Subscript','Superscript','-',**'audio'**], 
	['Table','HorizontalRule'], 
	['NumberedList','BulletedList','-','Outdent','Indent','Blockquote']
	] 
};

About

This is only an adaptation of Video plugin for CKEditor created by Alfonso Martínez de Lizarrondo