Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modal window does not work on demo page #25

Closed
il-s opened this issue Jan 13, 2021 · 7 comments
Closed

Modal window does not work on demo page #25

il-s opened this issue Jan 13, 2021 · 7 comments

Comments

@il-s
Copy link

il-s commented Jan 13, 2021

As far as I understood, the modal window should appear when you click on Log in, but nothing happens. Apparently the modal-trigger handler got lost somewhere ...

@il-s
Copy link
Author

il-s commented Jan 15, 2021

Solution path:

add in src/js/libs/utils/utils.js

export function initModals() {
  let targets = document.querySelectorAll(".modal-trigger");
  if (typeof targets != "undefined" && targets != null) {
    for (var i = 0, len = targets.length; i < len; i++) {
        targets[i].addEventListener('click',  function (event) {
          console.log('click modal');
          var modalID = this.getAttribute('data-modal');
          document.querySelector('#' + modalID).classList.add('is-active');
        })
    }
  }

  targets = document.querySelectorAll(".modal-close");
  if (typeof targets != "undefined" && targets != null) {
    for (var i = 0, len = targets.length; i < len; i++) {
        targets[i].addEventListener('click',  function (event) {
          console.log('click modal close');
          this.closest('.modal').classList.remove('is-active');
        })
    }
  }
}

in js/main.js

  1. add initModals in import from ulils.js
  2. add in document.onreadystatechange = function () {
...
const modals = initModals();

Enjoy)

@cssninjaStudio
Copy link
Collaborator

Hi, thanks for this contribution. Would you be kind to submit it as a PR? I'll review it and merge it then. Thanks!

@il-s
Copy link
Author

il-s commented Jan 16, 2021

There are still problems there:

  1. navbar will overlap the close button
  2. in modal mode, the backtotop button is again visible and active
  3. scrolling continues when the modal is open

I do not yet have a solution to these questions, but I continue to think about it.

@cssninjaStudio
Copy link
Collaborator

You can submit the PR as is and I can fix the remaining points you shared.

@il-s
Copy link
Author

il-s commented Jan 18, 2021

Add PR #26

@cssninjaStudio
Copy link
Collaborator

cssninjaStudio commented Jan 18, 2021

Thanks for your PR. I also made some changes to include what you've asked for. Please test and close the issue if you're ok with it.

@il-s
Copy link
Author

il-s commented Jan 18, 2021

Thank you very much! Everything works as it should.

@il-s il-s closed this as completed Jan 18, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant