Monday, March 7, 2016

webstorm angularJS live template: ngdl create directive

/** * @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