Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix: Constraint API #505

Merged
merged 2 commits into from
May 27, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion demo/assets/js/form-builder.min.js

Large diffs are not rendered by default.

Binary file modified demo/assets/js/form-builder.min.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion demo/assets/js/form-render.min.js

Large diffs are not rendered by default.

Binary file modified demo/assets/js/form-render.min.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/form-builder.min.js

Large diffs are not rendered by default.

Binary file modified dist/form-builder.min.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/form-render.min.js

Large diffs are not rendered by default.

Binary file modified dist/form-render.min.js.gz
Binary file not shown.
3 changes: 3 additions & 0 deletions src/js/control.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ export default class control {
config = $.extend({}, config);
this.preview = preview;
delete config.isPreview;
if (this.preview) {
delete config.required;
}

// process config - extract standard properties
let properties = ['label', 'description', 'subtype', 'required'];
Expand Down
4 changes: 0 additions & 4 deletions src/sass/_controls.scss
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,6 @@
animation: PLACEHOLDER 250ms forwards;
}
}

.input-set-0 {
border-radius: 5px 5px 0 0;
}
}

.fb-mobile {
Expand Down