Explorar el Código

fix(slides): enable menu by default

George Cushen hace 4 años
padre
commit
cbf15cd470
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      wowchemy/assets/js/wowchemy-slides.js

+ 1 - 1
wowchemy/assets/js/wowchemy-slides.js

@@ -50,7 +50,7 @@ if (typeof params.slides.reveal_options !== 'undefined') {
 pluginOptions = keysToCamelCase(pluginOptions);
 
 //enable menu by default if not set
-if (typeof pluginOptions.menu_enabled !== 'undefined') {
+if (typeof pluginOptions.menu_enabled === 'undefined') {
   pluginOptions.menu_enabled = true;
 }