Clint Davis

Results 5 comments of Clint Davis

Same here. Events are not getting emitted into vue event console.

So, quickview src/index.js:42 has a setTimeout, so no promise or handler is available. I had to copy the waiting time for the timeout to exceed before registering my listeners. I...

Or use a mutation observer: https://caniuse.com/#feat=mutationobserver `npm install --save vue-mutation-observer` ``` ..... import observer from 'vue-mutation-observer' export default { methods: { changeActive: function(e) { if (e[0].target.className == "quickview is-active") {...

My workaround for this was: **component.ts** ``` .... public pageLoaded: boolean = false; ... export class PaymentCardComponent implements OnInit, AfterViewInit ... ngAfterViewInit(): void { setTimeout(() => { this.pageLoaded = true;...

+1 to no logical sense. Given the work the native documents team did in blogs and research articles, the use case around this product on lambda exactly equals my case...