Enviar formulario al presionar Enter con AngularJS

En este caso particular, ¿qué opciones tengo para hacer que estas entradas activen una función cuando presiono Entrar?

// HTML view //
<form>
    <input type="text" ng-model="name" <!-- Press ENTER and call myFunc --> />
    <br />
    <input type="text" ng-model="email" <!-- Press ENTER and call myFunc --> />
</form>

// Controller //
.controller('mycontroller', ['$scope',function($scope) {
    $scope.name = '';
    $scope.email = '';
    // Function to be called when pressing ENTER
    $scope.myFunc = function() {
       alert('Submitted');
    };
}])

Respuestas a la pregunta(11)

Su respuesta a la pregunta