{"version":3,"file":"loadingIndecatorDirective.js","sourceRoot":"","sources":["../../../../src/modules/directives/applicationcore/loadingIndecatorDirective.ts"],"names":[],"mappings":"AAAA,IAAO,UAAU,CA8BhB;AA9BD,WAAO,UAAU;IACb,IAAc,eAAe,CA4B5B;IA5BD,WAAc,eAAe;QAGzB;YAOI;gBALO,aAAQ,GAAG,uJAEL,CAAC;gBACP,UAAK,GAAG,EAAE,CAAA;gBAKjB,SAAI,GAAG,UAAC,MAA8B,EAAE,QAA6B;oBACjE,IAAI,UAAU,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,UAAU,EAAE,CAAC;gBAGpD,CAAC,CAAA;YAND,CAAC;YAQM,iCAAO,GAAd;gBACI,IAAM,SAAS,GAAG,cAAM,OAAA,IAAI,yBAAyB,EAAE,EAA/B,CAA+B,CAAC;gBACxD,SAAS,CAAC,OAAO,GAAG,EAAE,CAAC;gBAEvB,OAAO,SAAS,CAAC;YACrB,CAAC;YACL,gCAAC;QAAD,CAAC,AAtBD,IAsBC;QAtBY,yCAAyB,4BAsBrC,CAAA;QAED,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,SAAS,CAAC,qBAAqB,EAAE,yBAAyB,CAAC,OAAO,EAAE,CAAC,CAAC;IAChG,CAAC,EA5Ba,eAAe,GAAf,0BAAe,KAAf,0BAAe,QA4B5B;AACL,CAAC,EA9BM,UAAU,KAAV,UAAU,QA8BhB","sourcesContent":["module directives {\r\n export module applicationcore {\r\n interface ILoadingIndecatorScope extends ng.IScope {\r\n }\r\n export class loadingIndecatorDirective implements ng.IDirective {\r\n public restrict: 'E';\r\n public template = `\r\n \r\n `;\r\n public scope = {}\r\n\r\n constructor() {\r\n }\r\n\r\n link = ($scope: ILoadingIndecatorScope, $element: ng.IAugmentedJQuery) => {\r\n var controller = $element.parent().controller();\r\n\r\n\r\n }\r\n\r\n static factory(): ng.IDirectiveFactory {\r\n const directive = () => new loadingIndecatorDirective();\r\n directive.$inject = [];\r\n\r\n return directive;\r\n }\r\n }\r\n\r\n angular.module(\"app\").directive(\"gtsLoadingIndecator\", loadingIndecatorDirective.factory());\r\n }\r\n}"]}