/* tslint:disable:member-ordering */ import { Directive, ElementRef, Input } from '@angular/core'; @Directive({ selector: '[cmtborderright]' }) export class cmtborderright { constructor(private el: ElementRef) {} @Input('cmtborderright') set orient(orient: string) { this.el.nativeElement.style.borderRight='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 */