pressbooks aldine theme the theme used for the front page or default book
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

59 lines
1.2 KiB

( function () {
tinymce.create( 'tinymce.plugins.aldine_call_to_action', {
/**
* @param editor
* @param url
*/
init: function ( editor, url ) {
editor.addButton( 'aldine_call_to_action', {
title: aldine.call_to_action.title,
icon: 'icon dashicons-flag',
/**
*
*/
onclick: function () {
editor.windowManager.open( {
title: aldine.call_to_action.title,
body: [
{
type: 'textbox',
name: 'text',
label: aldine.call_to_action.text,
value: aldine.call_to_action.title,
},
{
type: 'textbox',
name: 'link',
label: aldine.call_to_action.link,
value: '#',
},
],
/**
* @param e
*/
onsubmit: function ( e ) {
editor.insertContent(
'[aldine_call_to_action text="' +
e.data.text +
'" link="' +
e.data.link +
'"]'
);
},
} );
},
} );
},
/**
* @param n
* @param cm
*/
createControl: function ( n, cm ) {
return null;
},
} );
tinymce.PluginManager.add(
'aldine_call_to_action',
tinymce.plugins.aldine_call_to_action
);
} )();