Explorar o código

fix: JS when Portfolio widget created without a toolbar

George Cushen %!s(int64=4) %!d(string=hai) anos
pai
achega
f6090cd7e5
Modificáronse 1 ficheiros con 5 adicións e 1 borrados
  1. 5 1
      wowchemy/assets/js/wowchemy.js

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

@@ -491,7 +491,11 @@ $(window).on('load', function () {
     }
 
     // Get default filter (if any) for this instance
-    let filterText = isoSection.querySelector('.default-project-filter').textContent || '*';
+    let defaultFilter = isoSection.querySelector('.default-project-filter');
+    let filterText = '*';
+    if (defaultFilter !== null) {
+      filterText = defaultFilter.textContent;
+    }
     console.debug(`Default Isotope filter: ${filterText}`);
 
     // Init Isotope instance once its images have loaded.