Git Product home page Git Product logo

Comments (3)

MikeiLL avatar MikeiLL commented on June 24, 2024

You should probably share your code.

from modaal.

yosypandriyash avatar yosypandriyash commented on June 24, 2024

I had to change the library to generate the modals because I was in a hurry to finish the project, however it is as simple as declaring two different instances of modaal. Something like:

$ ('. my-first-selector'). modaal ({args});
$ ('. my-second-selector'). modaal ({args});

The error occurs when I open the modal $ ('. my-first-modal') and then, without closing the first one, I open the modal $ ('. my-second-modal');

It allows me to close the last one but afterwards the first one cannot be closed anymore.
Thanks!!

from modaal.

graemebryson avatar graemebryson commented on June 24, 2024

I'm experiencing the same issue — I have a global modal, in which there's a link to launch a second (video) modal on top. I can close the video modal, but the original modal then fails to close at all and I need to refresh.

I've tried forcing it via callbacks on the second modal, but it ends up launching multiple instances of the first.

// Initialize first modal
// --------------------------------------------------

jQuery(function($){
	$('.trigger__modal--first').modaal({
		custom_class: 'modal--first'
	});
});


// Initialize second modal
// --------------------------------------------------

jQuery(function($){
	$('.trigger__modal--second').modaal({
		custom_class: 'modal--second',
		type: 'video',
		after_open: function() {
			$('.trigger__modal--first').modaal('close');
		},
		after_close: function() {
			$('.trigger__modal--first').modaal('open');
		}
	});
});

from modaal.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.