You are here

function theme_editor_spacer in Editor 5

Same name and namespace in other branches
  1. 6 editor.module \theme_editor_spacer()

Theme a spacer.

Return value

string Markup.

Related topics

1 theme call to theme_editor_spacer()
editor_display_toolbars in ./editor.module
Generate toolbar markup.

File

./editor.module, line 734
Extendable WYSIWYG editor @author Tj Holowaychuk <tj@vision-media.ca> @link http://vision-media.ca @package Editor

Code

function theme_editor_spacer() {
  return '<div class="editor-spacer"></div>';
}