From cdefeec6a2450b5646db5cf2cbca7eb4a81ce85d Mon Sep 17 00:00:00 2001 From: lastnico Date: Tue, 18 Jun 2013 09:58:25 +0200 Subject: [PATCH] Pick the right attribute valud for form.$name if ng-form directive is used as an attribute This is especially important when you want your inner form to be published as a control of its parent form. Currently, if you have this code snippet:
...
-> mainForm.subForm will not be available -----------------
...
-> while it will work in this case. --- src/ng/directive/form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/directive/form.js b/src/ng/directive/form.js index ca055cb1fc6d..d98bc512a8fa 100644 --- a/src/ng/directive/form.js +++ b/src/ng/directive/form.js @@ -42,7 +42,7 @@ function FormController(element, attrs) { controls = []; // init state - form.$name = attrs.name; + form.$name = attrs.name || attrs.ngForm; form.$dirty = false; form.$pristine = true; form.$valid = true;