Skip to content

Commit 1b7000d

Browse files
committed
Add missing coma in gallery filter
1 parent f9e23ba commit 1b7000d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/jquery.nyroModal.filters.gallery.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jQuery(function($, undefined) {
1616
if (ret) {
1717
var rel = nm.opener.attr('rel'),
1818
indexSpace = rel.indexOf(' '),
19-
gal = indexSpace > 0 ? rel.substr(0, indexSpace) : rel
19+
gal = indexSpace > 0 ? rel.substr(0, indexSpace) : rel,
2020
links = $('[href][rel="'+gal+'"], [href][rel^="'+gal+' "]');
2121
if (links.length < 2)
2222
ret = false;

0 commit comments

Comments
 (0)