Skip to content

Commit

Permalink
update to 1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
corinis committed Oct 8, 2013
1 parent e0e3ba8 commit 15729bb
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 4,892 deletions.
2,410 changes: 0 additions & 2,410 deletions dist/jquery.jsForm-1.0.5.js

This file was deleted.

2,454 changes: 0 additions & 2,454 deletions dist/jquery.jsForm-1.0.6.js

This file was deleted.

11 changes: 6 additions & 5 deletions dist/jquery.jsForm-1.0.7.js → dist/jquery.jsForm-1.0.8.js
Original file line number Diff line number Diff line change
Expand Up @@ -570,11 +570,6 @@
// cut away the prefix
name = name.substring((prefix+".").length);

// skip empty names
if(name.length < 1) {
pojo = $(this).val();
return false;
}

var val = $(this).val();

Expand Down Expand Up @@ -627,6 +622,12 @@
val = ($(this).val() === "true");
}

// handle simple collection
if(name.length < 1) {
pojo = val;
return false;
}

// check if we have a . - if so split
if (name.indexOf(".") === -1)
{
Expand Down
6 changes: 0 additions & 6 deletions dist/jquery.jsForm.1.0.5.min.js

This file was deleted.

6 changes: 0 additions & 6 deletions dist/jquery.jsForm.1.0.6.min.js

This file was deleted.

6 changes: 0 additions & 6 deletions dist/jquery.jsForm.1.0.7.min.js

This file was deleted.

6 changes: 6 additions & 0 deletions dist/jquery.jsForm.1.0.8.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/jquery.jsForm.min.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion jsForm.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"json",
"data"
],
"version": "1.0.7",
"version": "1.0.8",
"author": {
"name": "Niko Berger"
},
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "jquery.jsForm",
"title": "jQuery JSON Form",
"description": "jQuery based form library to handle data in js objects\nIt allows you to handle data within a javascript object (like from a JSON request) with plain html.\n\nThe main features of this library are:\n Full standard html with data available in a js object\n Update an existing js object with changes done within a form\n Provide basic functions for formatting (i.e. date/time, money) using html markup\n Provide form validation functionality\n handle collections (arrays) with subobjects\n provides helper methods to handle array manipulation (add new entry/remove an entry) using only html markup\n Can be used in connection with an autocomplete function to add new array objects",
"version": "1.0.7",
"title": "jQuery JSON Form - jsForm",
"description": "jQuery based form library to tansfer json objects to html forms and back.\nIt allows you to handle data within a javascript object (like from a AJAX request) and then modify all fields/properties by simply creating a html form with the correct naming schema.\n\nThe main features of this library are:\n Full standard html with data available in a js object\n Update an existing js object with changes done within a form\n Provide basic functions for formatting (i.e. date/time, money) using html markup\n Provide form validation functionality\n handle collections (arrays) with subobjects\n provides helper methods to handle array manipulation (add new entry/remove an entry) using only html markup\n Can be used in connection with an autocomplete function to add new array objects",
"version": "1.0.8",
"homepage": "https://github.com/corinis/jsForm",
"author": {
"name": "Niko Berger",
Expand Down

0 comments on commit 15729bb

Please sign in to comment.