-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bugfix: multiple seect not working for defaultFields
- Loading branch information
1 parent
7c87254
commit 24035c5
Showing
22 changed files
with
25 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "formBuilder", | ||
"version": "1.10.2", | ||
"version": "1.10.3", | ||
"main": [ | ||
"dist/*" | ||
], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
formBuilder - http://kevinchappell.github.io/formBuilder/ | ||
Version: 1.10.2 | ||
Version: 1.10.3 | ||
Author: Kevin Chappell <[email protected]> | ||
*/ | ||
@charset "UTF-8"; | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
formBuilder - http://kevinchappell.github.io/formBuilder/ | ||
Version: 1.10.2 | ||
Version: 1.10.3 | ||
Author: Kevin Chappell <[email protected]> | ||
*/ | ||
* { | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
formBuilder - http://kevinchappell.github.io/formBuilder/ | ||
Version: 1.10.2 | ||
Version: 1.10.3 | ||
Author: Kevin Chappell <[email protected]> | ||
*/ | ||
'use strict'; | ||
|
@@ -1653,7 +1653,6 @@ function formBuilderEventsFn() { | |
field.required = field.required === 'true' || field.required === true; | ||
field.maxlength = field.maxlength; | ||
field.toggle = field.toggle; | ||
field.multiple = field.type.match(/(checkbox-group)/); | ||
field.description = field.description !== undefined ? _helpers.htmlEncode(field.description) : ''; | ||
|
||
var match = /(?:^|\s)btn-(.*?)(?:\s|$)/g.exec(field.className); | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
formBuilder - http://kevinchappell.github.io/formBuilder/ | ||
Version: 1.10.2 | ||
Version: 1.10.3 | ||
Author: Kevin Chappell <[email protected]> | ||
*/ | ||
'use strict'; | ||
|
Oops, something went wrong.