Warbble Pricing Dashboard
by Pablo Leone
HTML
<div ng-app>
<div data-pricing></div>
</div>
JavaScript
angular.module('warbble', []);
angular.module('warbble')
.directive('pricing', ['$http', function ($http) {
return {
restrict: 'AE',
replace: true,
template: '<div>Hello!</div>',
scope: {},
link: function (scope, element, attrs) {
alert('1');
}
};
}]);