I'm having some trouble with angular scopes within the context of a tab (Angular UI).
Here is my jsfiddle example (slimmed down example showing fields on multiple tabs with a single submit button outside of the tabs).
Here is the basic html layout:
<form...>
<tab>
<pane>
<input...>
</pane>
</tab>
</form>
Looking at the jsfiddle example, without the tabs if I submit a very basic form I would see the $scope.user be an object. Since the fields are within panes (tabs) the scope is incorrect. How can I get access to the submitted user object in createUser?