Skip to content

Commit 3f961d8

Browse files
Fixing indicator content bug
1 parent 8b5b823 commit 3f961d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/js/responsive.modal.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
touch: true,
6565
next: ">",
6666
nextHint: "Next (" + (rtl ? "Left" : "Right") + " Arrow)",
67-
prev: "<",
67+
previous: "<",
6868
previousHint: "Previous (" + (rtl ? "Right" : "Left") + " Arrow)",
6969
closeHint: "Close (Esc)",
7070
errorHint: "<p>An error has occured.</p>",
@@ -362,7 +362,7 @@
362362
local = !notHash && !external,
363363
$group = this.$group,
364364
nextText = this.options.next + "<span class=\"visuallyhidden\">" + this.options.nextHint + "</span>",
365-
prevText = this.options.prev + "<span class=\"visuallyhidden\">" + this.options.prevHint + "</span>",
365+
prevText = this.options.previous + "<span class=\"visuallyhidden\">" + this.options.previousHint + "</span>",
366366
iframeScroll = this.options.iframeScroll,
367367
image = this.options.image || rimage.test(target),
368368
iframe = this.options.iframe || notHash && external ? !image : false,

0 commit comments

Comments
 (0)