Skip to content

Commit

Permalink
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 (#176)
Browse files Browse the repository at this point in the history
kevinchappell authored Jun 23, 2016
1 parent 0aedc76 commit ebd7728
Showing 9 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion assets/css/form-builder.css
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";
2 changes: 1 addition & 1 deletion assets/css/form-builder.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/css/form-render.css
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]>
*/
* {
2 changes: 1 addition & 1 deletion assets/css/form-render.min.css

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

2 changes: 1 addition & 1 deletion assets/css/site.min.css

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

3 changes: 1 addition & 2 deletions assets/js/form-builder.js
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);
6 changes: 3 additions & 3 deletions assets/js/form-builder.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/form-render.js
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';
2 changes: 1 addition & 1 deletion assets/js/form-render.min.js

0 comments on commit ebd7728

Please sign in to comment.