Navigation Menu

Skip to content

Commit

Permalink
bump version to v0.4.1, release notes, and minified
Browse files Browse the repository at this point in the history
  • Loading branch information
Derick Bailey committed Nov 10, 2011
1 parent 32d1207 commit a6fc14e
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 16 deletions.
4 changes: 2 additions & 2 deletions backbone.modelbinding.js
@@ -1,4 +1,4 @@
// Backbone.ModelBinding v0.4.0
// Backbone.ModelBinding v0.4.1
//
// Copyright (C)2011 Derick Bailey, Muted Solutions, LLC
// Distributed Under MIT Liscene
Expand All @@ -12,7 +12,7 @@

Backbone.ModelBinding = (function(Backbone, _, $){
modelBinding = {
version: "0.4.0",
version: "0.4.1",

bind: function(view, options){
view.modelBinder = new ModelBinder(view, options);
Expand Down
28 changes: 15 additions & 13 deletions backbone.modelbinding.min.js

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

12 changes: 11 additions & 1 deletion readme.md
Expand Up @@ -544,14 +544,24 @@ The list of existing conventions includes:
* checkbox
* select
* textarea
* formbinding
* number
* range
* tel
* search
* url
* email
* databind

For fully functional, bi-directional binding convention examples, check out the source code
to Backbone.ModelBinding in the `backbone.modelbinding.js` file.

## Release Notes

### v0.4.1

* Bind the existing value from an input element to the model on render, if no model value exists
* Added HTML5 input types to the form binding conventions: number, range, tel, search, url, email

### v0.4.0

* Major internal rewrite to facilitate maintenance, new features, etc
Expand Down

0 comments on commit a6fc14e

Please sign in to comment.