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

$.get is not opening content in specified #id modal div #54

Open
AnghelGabriel opened this issue Sep 10, 2015 · 6 comments
Open

$.get is not opening content in specified #id modal div #54

AnghelGabriel opened this issue Sep 10, 2015 · 6 comments

Comments

@AnghelGabriel
Copy link

AnghelGabriel commented Sep 10, 2015

                $('#modal-window').modal({ 
                    lockClass: 'modal-lock',
                    overlayClass: 'modal-overlay',
                    closeOnEsc: false,
                    closeOnOverlayClick: false,    
                    onBeforeClose: null,
                    onClose: null, 
                    onOpen: function(el, options){
                        $.get('http://'+siteroot+modalPath+modalContent+'.php', function(data){
                            el.html(data);  
                        }); 
                    },
                    cloning: true
                }).open();

I'm using this. But when it openes the php file it just dumps the content in "modal-overlay" div.
Am i missing something here?

@maxxi165
Copy link

check the content that returns by your url.
it should be partial html, without etc.

@samdark samdark closed this as completed May 20, 2017
@maxxi165
Copy link

На самом деле, проблема имеет место быть. Сам наступил на эти грабли.
Скорей всего дело в несоответствующей документации, которая вводит в заблуждение.

Берем пример из документации

$.modal().open({
	onOpen: function(el, options){
		el.html('Hello!');
	}
});

ожидаем, что откроется модал с надписью Hello. Написано же "You can use it w/o markup at all by opening empty modal and filling it with custom data the way you want (see below)."
Но фигвам! Затеняется оверлей и на его фоне пишется "Hello".
Получается, "w/o markup" уже не работает?

@samdark samdark reopened this May 22, 2017
@maxxi165
Copy link

В первоначальной версии в onOpen передавался элемент диалога, а потом стали передавать элемент оверлея.

@samdark
Copy link
Owner

samdark commented May 22, 2017

Хм... с какого коммита?

@maxxi165
Copy link

наверное это 434530e
/* как правильно вставлять ссылку на коммит? */

@samdark
Copy link
Owner

samdark commented May 22, 2017

Да, похоже. Доку надо поправить, но времени сейчас в обрез :( Если сделаете pull request — с удовольствием смёржу.

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

3 participants