app.directive('selectionRating', function() {
return {
link: function($scope, element, attrs) {
var tar = element.children();
tar.bind('click', function() {
this.addClass('second');
});
}
}
});