Skip to content
Snippets Groups Projects
Commit 1ac7ab9d authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Merge pull request #675 from EreMaijala/lightbox-action-fix

Fix lightbox submit form action handling on Microsoft Edge.
parents 6c8a0177 f93b45a6
No related merge requests found
......@@ -266,8 +266,8 @@ VuFind.register('lightbox', function() {
_lightboxTitle = submit.data('lightboxTitle') || $(form).data('lightboxTitle') || '';
// Get Lightbox content
ajax({
url: form.action || _currentUrl,
method: form.method || 'GET',
url: $(form).attr('action') || _currentUrl,
method: $(form).attr('method') || 'GET',
data: data
});
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment