/* tslint:disable:member-ordering */ import { Directive, ElementRef, Input } from '@angular/core'; @Directive({ selector: '[cmtborderbottom]' }) export class cmtborderbottom { constructor(private el: ElementRef) { // this.el; // debugger; } @Input('cmtborderbottom') set orient(orient: string) { this.el.nativeElement.style.borderBottom = '1px solid #cccccc'; } } /* Copyright 2017 Google Inc. All Rights Reserved. Use of this source code is governed by an MIT-style license that can be found in the LICENSE file at http://angular.io/license */