Yodlee UI closing issue

54 Views Asked by At

I'm using the yodlee for some developing purposes for my ongoing project with nuxtjs 2.I cannot close the rendered Yodlee UI by clicking the close button in top of the yodlee page. However, the back button is working as expected after selecting a bank.

enter image description here The initial page

enter image description here After selecting a bank and its working(the go back which is in the top of the left side)

Even no console errors and I just tried with the class of the a tag related to the button below enter image description here

mounted() {
  let fastLinkCloseBtn = document.getElementsByClassName(
    'icon-link close-icon'
  )
  if (fastLinkCloseBtn) {
    console.log('working')
    fastLinkCloseBtn.onClick = window.fastlink.close()
  } else {
    console.log('not working')
  }
},

0

There are 0 best solutions below