| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Old Sites/modip/modules/ckeditor/includes/ |
Upload File : |
CKEDITOR.on( 'dialogDefinition', function( ev )
{
var dialogName = ev.data.name;
var dialogDefinition = ev.data.definition;
if ( dialogName == 'uicolor' )
{
// Get a reference to the configBox and hide it (cannot be removed).
var configBox = dialogDefinition.getContents( 'tab1' ).get( 'configBox' );
configBox.style = 'display:none';
}
});
$(document).ready(function() {
if (typeof(CKEDITOR) == "undefined")
return;
$('#edit-uicolor-textarea').show();
Drupal.ckeditorUiColorOnChange = function() {
var color = CKEDITOR.instances["edit-uicolor-textarea"].getUiColor();
if ($("#edit-uicolor").val() == "custom" && typeof(color) != "undefined") {
$('#edit-uicolor-user').val(color);
}
};
CKEDITOR.replace("edit-uicolor-textarea",
{
extraPlugins : 'uicolor',
height: 60,
uiColor: $('#edit-uicolor-user').val() || '#D3D3D3',
width: 400,
toolbar : [[ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList'],[ 'UIColor' ]],
on:
{
focus : Drupal.ckeditorUiColorOnChange,
blur : Drupal.ckeditorUiColorOnChange
}
});
$("#edit-uicolor").bind("change", function() {
if (typeof(Drupal.settings.ckeditor_uicolor) != "undefined") {
CKEDITOR.instances["edit-uicolor-textarea"].setUiColor(Drupal.settings.ckeditor_uicolor[$(this).val()]);
}
if ($(this).val() != "custom") {
$('#edit-uicolor-user').val("");
}
else {
var color = CKEDITOR.instances["edit-uicolor-textarea"].getUiColor();
if (typeof(color) != "undefined") {
$('#edit-uicolor-user').val(color);
}
}
});
});