/** * @ngdoc directive * @name wmPizzaBar * @description Show a pizza bar */module.directive('wmPizzaBar', function () { return { link: function (scope, element, attrs) { element.text("this is the statusBar"); }, restrict: "E" }; });
add to order.tmpl.html
<wm-pizza-bar></wm-pizza-bar>
No comments:
Post a Comment