<input-directive model="config.shared.product.whatevers[0]"></input-directive>
<!-- This code is functioning correctly, however the following does not bind properly -->
<td ng-repeat="whatever in config.shared.product.whatevers track by $index">
<input-directive model="whatever"></input-directive>
</td>
Essentially, the model fails to update when using the directive inside an ng-repeat loop. Although it can read the value, it does not update when the input value is changed. Please let me know if additional code is needed!