I'm using the controller as syntax, and not sure how to access the child directive's scope. I can do it like this, but there has to be a better way, no?
angular.module('saProducts').directive 'saProductNew', ->
  restrict: 'A'
  templateUrl: 'app/products/templates/new.html'
  controllerAs: 'product'
  controller: ($scope, Product) ->
    @save = ->
      Product.save(product: @current).$promise.then (product) ->
        $scope.$$childHead.images.owner = product # Isn't there a way to access it without going through the $$childHead object?
 
    