Skip to content

Instantly share code, notes, and snippets.

View amrhassab's full-sized avatar

Amr Hassaballah amrhassab

View GitHub Profile
@0xHexE
0xHexE / script-loader.service.ts
Created July 22, 2018 09:34
Load dynamically file in the angular using service
import { Injectable } from '@angular/core';
@Injectable()
export class ScriptLoaderService {
constructor() { }
loadScript(url: string) {
return this.load(url, 'script');
}