Advertisement
Guest User

Untitled

a guest
Jul 1st, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module configprofiles {
  2.  
  3.     export function FdrConfiguration(): ng.IDirective {
  4.         return {
  5.             restrict: 'E',
  6.             templateUrl: "common/elements/fdr_configuration.html",
  7.             scope: {
  8.                 blbl: '=fdrConfig'
  9.             }
  10.         }
  11.     }
  12.  
  13.     angular.module('app.configprofiles').directive('fdrConfig', FdrConfiguration);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement