diff --git a/js/background-set.js b/js/background-set.js index f62929d..9ca3506 100644 --- a/js/background-set.js +++ b/js/background-set.js @@ -1,4 +1,4 @@ -class DummyBodyBackground { +class BackgroundSet { constructor() { this._body = document.body; diff --git a/js/script.js b/js/script.js index 476c857..ea2b940 100644 --- a/js/script.js +++ b/js/script.js @@ -2,7 +2,7 @@ const config = new Config(); // Instantiate dummy background setter -const dummyBodyBackground = new DummyBodyBackground(); +const backgroundSet = new BackgroundSet(); // Instantiate a clock object const clock = new Clock();