I need get 'c' attribute inside child element from parent (see in jsfiddle) Is it possible?
<div ng-app="myApp">
    <box c="yellow">
       <item>item</item>
    </box>
</div>    
angular.module('myApp', [])
.directive('box', function() {
    return {
        restrict: 'E',
        replace: true,
        transclude: true,
        template: '<div ng-transclude></div>'
    };
})
.directive('item', function() {
    return {
        restrict: 'E',
        replace: true,
        scope: {c:'='},
        template: '<div>c:{{c}}</div>'
    };
});
 
     
     
    