Using angularjs and ui-router can I:
A.) Define custom variables when defining my state (see 'data' below). I currently do this with success, wanted to make sure its proper.
.state('parent', {url:'/parent', templateUrl: 'views/parent.html', abstract: true, data: {stuff: 'stuff'}})
B.) Have my child state inherit that variable data ( How? )
.state('parent.child', {url:'/child', templateUrl: 'views/parent.child.html', data: parent.data})
?