You are here

function _get_text_resize_line_height_min in Text Resize 6

2 calls to _get_text_resize_line_height_min()
text_resize_init in ./text_resize.module
Implementation of hook_init().
_text_resize_line_height_min in ./text_resize.module

File

./text_resize.module, line 158
Creates a small block with jQuery links that resize text within the BODY tag.

Code

function _get_text_resize_line_height_min() {
  $text_resize_line_height_min = variable_get('text_resize_line_height_min', 16);
  return $text_resize_line_height_min;
}