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

Add file input type #80

Merged
merged 3 commits into from
Mar 7, 2016
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 .fontello
Original file line number Diff line number Diff line change
@@ -1 +1 @@
f823efa28957d24fc87fa912864de033
f621bc3c1ac4ff1adb412087d2ea3e28
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changelog

- v1.8.1 - Feature: File upload element [#80](https://github.com/kevinchappell/formBuilder/pull/80)
- v1.8.0 - Feature: Button element [#79](https://github.com/kevinchappell/formBuilder/pull/79)
- v1.7.10 - Bugfix: stringify bug causing `null` to be 'null'
- v1.7.9 -
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
formBuilder v1.8.0
formBuilder v1.8.1
===========

[![Join the chat at https://gitter.im/kevinchappell/formBuilder](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/kevinchappell/formBuilder?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Expand Down
3 changes: 2 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "formBuilder",
"version": "1.8.0",
"version": "1.8.1",
"main": [
"dist/*"
],
Expand All @@ -9,6 +9,7 @@
"Kevin Chappell <[email protected]>"
],
"keywords": [
"jquery-plugin",
"forms",
"drag and drop",
"form builder"
Expand Down
2 changes: 1 addition & 1 deletion demo/assets/css/demo.css

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

95 changes: 52 additions & 43 deletions demo/assets/css/form-builder.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions demo/assets/css/form-builder.min.css

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion demo/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.8.0
Version: 1.8.1
Author: Kevin Chappell <[email protected]>
*/
* {
Expand Down Expand Up @@ -221,6 +221,12 @@ textarea.form-control {
.form-control {
background-image: none; }

.pull-right {
float: right; }

.pull-left {
float: left; }

.kc-toggle {
position: relative;
margin: 4px 0 0 2px;
Expand Down
4 changes: 2 additions & 2 deletions demo/assets/css/form-render.min.css

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

Loading