Support from Acquia helps fund testing for Drupal Acquia logo

Comments

populist’s picture

Title: Add Circkuit Theme to TinyMCE » Add Cirkuit Theme to TinyMCE
populist’s picture

Status: Needs review » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

populist’s picture

Here is a quick update to the CSS to make things look/work a little nicer.

populist’s picture

Here is a unified patch for both changes

populist’s picture

Here is an update for Tinymce 3.5.2

populist’s picture

Update for TinyMCE 3.5.7

populist’s picture

Update for TinyMCE 3.5.8

jessehs’s picture

Component: Code » Admin
Issue summary: View changes
FileSize
89.1 KB

The Cirkuit Theme as patched here does not appear to support the button icon for the Visualblocks plugin, which is useful for visualizing divs, tags, spans, etc. Granted, this plugin must be added manually. Ex:

/**
 * Implements hook_wysiwyg_plugin().
 *
 * Adds the option for the Visualblocks button in the settings form.
 */
function HOOK_wysiwyg_plugin($editor, $version) {
  $plugin = array();

  $plugin['visualblocks'] = array(
    'buttons' => array('visualblocks' => t('Visual Blocks')),
    'url' => 'http://www.tinymce.com/wiki.php/Plugin:visualblocks',
    'load' => TRUE,
    'internal' => TRUE,
  );

  return $plugin;
}

This patch's only difference is to add the icon back.

dsnopek’s picture

Component: Admin » WYSIWYG

@jessehs: Thanks for the patch! However, this issue is closed and the original patch is already committed. Can you create a new issue with a patch against the latest panopoly_wysiwyg? Thanks!