1
0
mirror of https://github.com/webslides/WebSlides.git synced 2025-08-18 19:02:00 +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() { disable() {
this.el.classList.add(CLASSES.DISABLED); this.el.classList.add(CLASSES.DISABLED);
if (this.ws_.plugins.autoslide && if (this.plugins.autoslide &&
this.plugins.autoslide.time !== false) { this.plugins.autoslide.time !== false) {
this.plugins.autoslide.stop(); this.plugins.autoslide.stop();
} }
@@ -414,9 +414,9 @@ export default class WebSlides {
enable() { enable() {
this.el.classList.remove(CLASSES.DISABLED); this.el.classList.remove(CLASSES.DISABLED);
if (this.ws_.plugins.autoslide && if (this.plugins.autoslide &&
this.ws_.plugins.autoslide.time !== false) { this.plugins.autoslide.time !== false) {
this.ws_.plugins.autoslide.play(); this.plugins.autoslide.play();
} }
} }

View File

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