You are here

function _hide_submit_inject in Hide submit button 5

Insert JS into page.

1 call to _hide_submit_inject()
hide_submit_form_alter in ./hide_submit.module
Implementation of hook_form_alter

File

./hide_submit.module, line 150

Code

function _hide_submit_inject() {
  static $hide_submit_js_loaded = FALSE;
  if (!$hide_submit_js_loaded && _hide_submit_load_js_check_condition()) {
    $js = _hide_submit_get_javascript();
    drupal_add_js($js, 'inline', 'footer');
    $hide_submit_js_loaded = TRUE;
  }
}