remove unused classes

This commit is contained in:
Çetin
2021-12-22 16:06:49 +03:00
parent e78b5afea5
commit 6b24f8fcbe
30 changed files with 361 additions and 646 deletions
@@ -3,7 +3,6 @@ import {CountryService} from '../service/countryservice';
@Component({
templateUrl: './floatlabeldemo.component.html',
styleUrls: ['./floatlabeldemo.scss']
})
export class FloatLabelDemoComponent implements OnInit {
@@ -58,7 +57,6 @@ export class FloatLabelDemoComponent implements OnInit {
// return filtered results, for demo we filter at client side
const filtered: any[] = [];
const query = event.query;
// tslint:disable-next-line:prefer-for-of
for (let i = 0; i < this.countries.length; i++) {
const country = this.countries[i];
if (country.name.toLowerCase().indexOf(query.toLowerCase()) == 0) {