Skip to content

Commit

Permalink
Build
Browse files Browse the repository at this point in the history
  • Loading branch information
powmedia committed Oct 12, 2012
1 parent 50eab86 commit 99648c6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -892,6 +892,7 @@ Writing a custom editor is simple. They must extend from Backbone.Form.editors.B
##Changelog

###master
- Allow the Number field type to accept decimal values (philfreo)
- Added 'backbone-forms' as a dependency to the AMD wrapper for templates. (seanparmelee)
- Allow use of required validator with checkbox fields (lennym)
- Make Form.Field template rendering context overrideable (drd)
Expand Down
1 change: 1 addition & 0 deletions distribution.amd/backbone-forms.js
Expand Up @@ -1213,6 +1213,7 @@ Form.editors = (function() {
editors.Text.prototype.initialize.call(this, options);

this.$el.attr('type', 'number');
this.$el.attr('step', 'any');
},

/**
Expand Down
2 changes: 1 addition & 1 deletion distribution.amd/backbone-forms.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions distribution/backbone-forms.js
Expand Up @@ -1226,6 +1226,7 @@ Form.editors = (function() {
editors.Text.prototype.initialize.call(this, options);

this.$el.attr('type', 'number');
this.$el.attr('step', 'any');
},

/**
Expand Down
2 changes: 1 addition & 1 deletion distribution/backbone-forms.min.js

Large diffs are not rendered by default.

0 comments on commit 99648c6

Please sign in to comment.