robertbrower-technologies

Results 5 comments of robertbrower-technologies

How to load translations per module is described in the documentation. If you want to load on a component by component basis you can try something like this: import {...

Just to give you an update on this... My confusion / concern stemmed somehow from the example. I guess because I was new with the generator. But I had stuffed...

As a quick test I simply renamed my directive selector to bsRotate and added it to the component markup. I did not get the error. I got other errors though....

Or increase the version of the library.

@ViewChildren('middle') private middle: QueryList; ngAfterViewInit() { this.middleChanges = this.middle.changes .subscribe((changes: QueryList ) => { debugger; if (this.middleObserverElement) { console.log(`middle unobserve ${this.middleObserverElement.innerText}`); this.middleObserver.unobserve(this.middleObserverElement); this.middleObserver.disconnect(); this.middleObserverElement = null; } if (changes.length) {...