You are here

function bootstrap_tour_form_add_one in Bootstrap Tour 7

AJAX callback to add one more step.

1 string reference to 'bootstrap_tour_form_add_one'
bootstrap_tour_form in ./bootstrap_tour.module
Form callback for the administration of site tours.

File

./bootstrap_tour.module, line 375

Code

function bootstrap_tour_form_add_one($form, &$form_state) {
  $form_state['num_steps']++;
  $form_state['rebuild'] = TRUE;
}