Skip to content

Commit

Permalink
frontend step title bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MManthey committed Jan 31, 2024
1 parent 897f1b8 commit 858cf74
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 38 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog
This file hosts the complete changelog of this plugin.

## 1.7.15
* frontend step title bug fix

## 1.7.14
* removed option to add HTML to Paragraph block

Expand Down
2 changes: 1 addition & 1 deletion assets/js/backend/wizard-admin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1055,7 +1055,7 @@ declare var wp: any;

log('titleOnChangeU', $this.val());

$this.closest('.postbox').find('h1 > span').html($this.val().toString());
$this.closest('.postbox').find('h1 > span').text($this.val().toString());
}


Expand Down
4 changes: 2 additions & 2 deletions mondula-form-wizard.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/*
* Plugin Name: Multi Step Form
* Version: 1.7.14
* Version: 1.7.15
* Plugin URI: http://www.mondula.com/
* Description: Create and embed Multi Step Form.
* Author: Mondula GmbH
Expand Down Expand Up @@ -82,7 +82,7 @@ function msf_drop_tables($tables = array(), $blog_id = null) {
* @return object Mondula_Form_Wizard
*/
function Mondula_Form_Wizard() {
$instance = Mondula_Form_Wizard::instance(__FILE__, '1.7.14');
$instance = Mondula_Form_Wizard::instance(__FILE__, '1.7.15');

if (is_null($instance->settings)) {
$instance->settings = Mondula_Form_Wizard_Settings::instance($instance);
Expand Down
40 changes: 6 additions & 34 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: mondula2016
Tags: multi, step, forms, multi step form, multi-step, steps, feedback, email, contact form, progress bar, form builder, dynamic, ajax, formular
Requires at least: 5.0
Tested up to: 6.3.1
Stable tag: 1.7.14
Stable tag: 1.7.15
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -84,6 +84,9 @@ A. **[Find them here](https://mondula.com/en/multi-step-form-faqs/ "Multi Step

== Changelog ==

= 1.7.15 =
* frontend step title bug fix

= 1.7.14 =
* removed option to add HTML to Paragraph block

Expand Down

0 comments on commit 858cf74

Please sign in to comment.