mirror of
https://github.com/webslides/WebSlides.git
synced 2025-08-25 22:20:46 +02:00
Fix navigation previous link
This commit is contained in:
@@ -131,7 +131,7 @@ export default class Navigation {
|
||||
event.preventDefault();
|
||||
if (event.target === this.next) {
|
||||
this.ws_.goNext();
|
||||
} else if (event.target === this.next) {
|
||||
} else if (event.target === this.prev) {
|
||||
this.ws_.goPrev();
|
||||
} else {
|
||||
this.ws_.toggleZoom();
|
||||
|
@@ -1735,7 +1735,7 @@ var Navigation = function () {
|
||||
event.preventDefault();
|
||||
if (event.target === this.next) {
|
||||
this.ws_.goNext();
|
||||
} else if (event.target === this.next) {
|
||||
} else if (event.target === this.prev) {
|
||||
this.ws_.goPrev();
|
||||
} else {
|
||||
this.ws_.toggleZoom();
|
||||
|
2
static/js/webslides.min.js
vendored
2
static/js/webslides.min.js
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user