How can I create a directive with a dynamic template?
\'use strict\'; app.directive(\'ngFormField\', function($compil
One way is using a template function in your directive:
... template: function(tElem, tAttrs){ return ''; } ...