Skip to content

Instantly share code, notes, and snippets.

View rgolea's full-sized avatar

Rares Golea rgolea

  • Spain
View GitHub Profile
[
[ 'A0', 'A1', 'A2', 'A3', 'A4', 'A5' ],
[ 'B0', 'B1', 'B2', 'B3', 'B4', 'B5' ],
[ 'C0', 'C1', 'C2', 'C3', 'C4', 'C5' ],
[ 'D0', 'D1', 'D2', 'D3', 'D4', 'D5' ],
[ 'E0', 'E1', 'E2', 'E3', 'E4', 'E5' ],
[ 'F0', 'F1', 'F2', 'F3', 'F4', 'F5' ]
]
const rows = 'ABCDEF';
import { Component, OnInit, OnDestroy } from '@angular/core';
import { Subject } from 'rxjs';
import { distinctUntilChanged } from 'rxjs/operators';
import { FormControl } from '@angular/forms';
import { SomeService } from './some-service';
import { autocomplete } from './autocomplete.operator';
@Component({
selector: 'app-component',
templateUrl: './app-component.html',
/*
* Usage:
*
* <ion-header [scrollHide]="content">
* ...
* </ion-header>
* <ion-content #content>
* ...
* </ion-content>
*