buble.js
angular.module('homepage').
directive('buble', function () {
return {
restrict: 'E',
replace: true,
scope: {
size: '=',
title: '=',
value: '='
},
transclude: true,
templateUrl: 'components/common-components/buble/buble.html'
}
});