function _get_text_resize_scope in Text Resize 6
2 calls to _get_text_resize_scope()
- text_resize_init in ./
text_resize.module - Implementation of hook_init().
- _text_resize_scope in ./
text_resize.module
File
- ./
text_resize.module, line 93 - Creates a small block with jQuery links that resize text within the BODY tag.
Code
function _get_text_resize_scope() {
$text_resize_scope = variable_get('text_resize_scope', 'content-inner');
return $text_resize_scope;
}