Fix toggleCountryCities bug - use let* for sequential binding
The arrow variable was referencing country-row before it was defined because let binds all variables simultaneously. Changed to let* for sequential binding so country-row is available when binding arrow.
This commit is contained in:
parent
238e880b86
commit
c2ce895bfe
|
|
@ -983,9 +983,9 @@
|
|||
|
||||
;; Toggle city display for a country
|
||||
(defun toggle-country-cities (country)
|
||||
(let ((city-row (ps:chain document (get-element-by-id (+ "cities-" country))))
|
||||
(country-row (ps:chain document (query-selector (+ "tr[data-country=\"" country "\"]"))))
|
||||
(arrow (when country-row (ps:chain country-row (query-selector ".expand-arrow")))))
|
||||
(let* ((city-row (ps:chain document (get-element-by-id (+ "cities-" country))))
|
||||
(country-row (ps:chain document (query-selector (+ "tr[data-country=\"" country "\"]"))))
|
||||
(arrow (when country-row (ps:chain country-row (query-selector ".expand-arrow")))))
|
||||
|
||||
(if (ps:chain *expanded-countries* (has country))
|
||||
(progn
|
||||
|
|
|
|||
Loading…
Reference in New Issue