1
0
mirror of https://github.com/webslides/WebSlides.git synced 2025-08-17 10:30:51 +02:00

Fixing issues

This commit is contained in:
Antonio Laguna
2017-06-28 16:12:26 +02:00
parent 43bc612a5b
commit 377de1f0be
2 changed files with 9 additions and 9 deletions

View File

@@ -402,7 +402,7 @@ export default class WebSlides {
disable() {
this.el.classList.add(CLASSES.DISABLED);
if (this.ws_.plugins.autoslide &&
if (this.plugins.autoslide &&
this.plugins.autoslide.time !== false) {
this.plugins.autoslide.stop();
}
@@ -414,9 +414,9 @@ export default class WebSlides {
enable() {
this.el.classList.remove(CLASSES.DISABLED);
if (this.ws_.plugins.autoslide &&
this.ws_.plugins.autoslide.time !== false) {
this.ws_.plugins.autoslide.play();
if (this.plugins.autoslide &&
this.plugins.autoslide.time !== false) {
this.plugins.autoslide.play();
}
}

View File

@@ -273,7 +273,7 @@ nav[role='navigation'] li {
a {
background-color: rgba(50, 50, 50, .9);
color:#fff;
color: $white;
&:hover {
background-color: rgba(50, 50, 50, .7);