Skip to content

Commit 17dc7ef

Browse files
committed
Bumped version and updated CHANGELOG
1 parent 3ada1da commit 17dc7ef

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

CHANGELOG

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
v0.7.12
2+
-------
3+
* Error on deleteFromArray task, thanks @bygiro
4+
* Fix for copyValueTo on numeric fields, thanks @Anthropic
5+
* "condition" option on every form type, thanks @davidlgj
6+
* Force redraw "schemaFormRedraw", thanks @davidlgj
7+
* Possible fix for "updateOn exception", thanks @plong0
8+
19
v0.7.11
210
-------
311
* New front page with a list of add-on:s based on a bower search! Thanks @unicornforce @Dervisevic @davidlgj

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"dist/schema-form.js",
55
"dist/bootstrap-decorator.js"
66
],
7-
"version": "0.7.11",
7+
"version": "0.7.12",
88
"authors": [
99
"Textalk",
1010
"David Jensen <[email protected]>",

dist/schema-form.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1111,7 +1111,7 @@ angular.module('schemaForm').directive('sfArray', ['sfSelect', 'schemaForm', 'sf
11111111
}
11121112

11131113
// Angular 1.2 lacks setDirty
1114-
if (ngModel.$setDirty) {
1114+
if (ngModel && ngModel.$setDirty) {
11151115
ngModel.$setDirty();
11161116
}
11171117
return list;

dist/schema-form.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-schema-form",
3-
"version": "0.7.11",
3+
"version": "0.7.12",
44
"description": "Create complex forms from a JSON schema with angular.",
55
"repository": "Textalk/angular-schema-form",
66
"main": "dist/schema-form.min.js",

0 commit comments

Comments
 (0)