Skip to content

Instantly share code, notes, and snippets.

@jesshannon
jesshannon / confirm-modal-and-service.ts
Last active May 4, 2018 16:05 — forked from jnizet/confirm-modal-and-service.ts
How to create a reusable service allowing to open a confirmation modal from anywhere with ng-bootstrap
import { Component, Injectable, Directive, TemplateRef } from '@angular/core';
import { NgbModal, NgbModalRef, NgbModalOptions } from '@ng-bootstrap/ng-bootstrap';
/**
* Options passed when opening a confirmation modal
*/
interface ConfirmOptions {
/**
* The title of the confirmation modal
*/