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

Lightbox ignores links used as jump points (#downthepage).

parent d610e0bf
No related merge requests found
......@@ -203,7 +203,7 @@ VuFind.register('lightbox', function() {
* data-lightbox-title = Lightbox title (overrides any title the page provides)
*/
var _constrainLink = function(event) {
if (typeof $(this).data('lightboxIgnore') != 'undefined') {
if (typeof $(this).data('lightboxIgnore') != 'undefined' || this.attributes.href.value.charAt(0) === '#') {
return true;
}
if (this.href.length > 1) {
......
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