I would like to know what it mean when directive definition have no scope:, and also what would be equivalent if I where to add scope:.
Like this example:
.directive('myCustomer', function() {
return {
template: 'Name: {{customer.name}} Address: {{customer.address}}'
};
});