remove window. references

This commit is contained in:
Matt Walsh
2022-11-22 16:29:10 -06:00
parent cc61d2c6d1
commit 72b2f275fa
14 changed files with 34 additions and 43 deletions

View File

@@ -8,8 +8,9 @@ import { DateTime } from '../vendor/auto/luxon.mjs';
import { fahrenheitToCelsius } from './utils/units.mjs';
import { getWeatherIconFromIconLink } from './icons.mjs';
import { preloadImg } from './utils/image.mjs';
import WeatherDisplay from './weatherdisplay.mjs';
/* globals WeatherDisplay, navigation */
/* globals navigation */
class ExtendedForecast extends WeatherDisplay {
constructor(navId, elemId) {
@@ -167,5 +168,3 @@ class ExtendedForecast extends WeatherDisplay {
}
export default ExtendedForecast;
window.ExtendedForecast = ExtendedForecast;