Client: Neilson P. Soult (NIF: Z0643878K) Firm: SeCod Assessors (Sedeno Fuente Asesores SL), Barcelona Period: February 8, 2024 — March 5, 2026 Total Emails Analyzed: 269 Prepared: March 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Component, createNgModuleRef, Injector, Input, OnChanges, ViewChild } from '@angular/core'; | |
| import { loadRemoteModule } from '@nrwl/angular/mfe'; | |
| import { PluginDirective } from './plugin-directive'; | |
| // plugin directive: | |
| // import { Directive, ViewContainerRef } from '@angular/core'; | |
| // @Directive({ selector: '[crxPlugin]' }) | |
| // export class PluginDirective { | |
| // constructor (public viewContainerRef: ViewContainerRef) { } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const ngTools = require("@ngtools/webpack"); | |
| const path = require('path'); | |
| module.exports = (config) => { | |
| // add pug loader into webpack module rules | |
| config.module.rules = [ | |
| { | |
| test: /.(pug|jade)$/, | |
| exclude: /.(include|partial).(pug|jade)$/, |
I hereby claim:
- I am neilsoult on github.
- I am nsoult (https://keybase.io/nsoult) on keybase.
- I have a public key ASBYlAZ8utb-NstsNlguustGuhtUsMT20aCNqlOiKtb1wwo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| angular.module('testApp', []). | |
| directive('lazyLoad', ['$window', '$q', function ($window, $q) { | |
| function load_script() { | |
| var s = document.createElement('script'); // use global document since Angular's $document is weak | |
| s.src = 'https://maps.googleapis.com/maps/api/js?sensor=false&callback=initialize'; | |
| document.body.appendChild(s); | |
| } | |
| function lazyLoadApi(key) { | |
| var deferred = $q.defer(); | |
| $window.initialize = function () { |