Skip to content
Snippets Groups Projects
Commit 6bce7edd authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FEAT #8964 TIME 0:25 add semicolon separator key

parent 7b10b440
No related branches found
No related tags found
No related merge requests found
import { COMMA } from '@angular/cdk/keycodes'; import { COMMA, SEMICOLON, FF_SEMICOLON } from '@angular/cdk/keycodes';
import { Component, OnInit, Inject, ViewChild, ElementRef } from '@angular/core'; import { Component, OnInit, Inject, ViewChild, ElementRef } from '@angular/core';
import { HttpClient } from '@angular/common/http'; import { HttpClient } from '@angular/common/http';
import { LANG } from '../../translate.component'; import { LANG } from '../../translate.component';
...@@ -29,7 +29,7 @@ export class SentResourcePageComponent implements OnInit { ...@@ -29,7 +29,7 @@ export class SentResourcePageComponent implements OnInit {
lang: any = LANG; lang: any = LANG;
loading: boolean = true; loading: boolean = true;
readonly separatorKeysCodes: number[] = [COMMA]; readonly separatorKeysCodes: number[] = [COMMA, SEMICOLON, FF_SEMICOLON, 190];
availableEmailModels: any[] = []; availableEmailModels: any[] = [];
availableSignEmailModels: any[] = []; availableSignEmailModels: any[] = [];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment