Skip to content

Instantly share code, notes, and snippets.

@jinhduong
Created November 23, 2017 10:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jinhduong/db72cc60a44d0274646bba24d12d80f7 to your computer and use it in GitHub Desktop.
Save jinhduong/db72cc60a44d0274646bba24d12d80f7 to your computer and use it in GitHub Desktop.
Quill
import { Component, OnInit } from '@angular/core';
require('style-loader!./lib/quill.bubble.css');
require('style-loader!./lib/quill.snow.css');
@Component({
selector: 'app-agency-term',
templateUrl: './agency-term.component.html',
styleUrls: ['./agency-term.component.scss']
})
export class AgencyTermComponent implements OnInit {
constructor() { }
ngOnInit() {
}
setFocus($event) {
$event.focus();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment