]> git.r.bdr.sh - rbdr/blog/commitdiff
Trim some resources
authorRuben Beltran del Rio <redacted>
Sun, 22 Jan 2023 21:13:01 +0000 (22:13 +0100)
committerRuben Beltran del Rio <redacted>
Sun, 22 Jan 2023 21:13:01 +0000 (22:13 +0100)
static/css/style.css
static/js/blog.js

index 8b1d9214eb088eca48898b47b5e4832a0c8e9231..4dfcaed4436805066866d59a8dd18c0c25837106 100644 (file)
@@ -17,10 +17,6 @@ p {
   font-size: 1.125em;
 }
 
   font-size: 1.125em;
 }
 
-img {
-  max-width: 100%;
-}
-
 @media (prefers-color-scheme: dark) {
   body {
     color: white;
 @media (prefers-color-scheme: dark) {
   body {
     color: white;
@@ -35,4 +31,3 @@ img {
     color: #ed6eff;
   }
 }
     color: #ed6eff;
   }
 }
-
index a49a72f4d2cb2da376c0af993d853bf6ff4f0094..68c13dacbeb1d35be9f94884a2f3d4ce9d492f75 100644 (file)
@@ -2,27 +2,25 @@
 
 /* globals window */
 
 
 /* globals window */
 
-((window) => {
+((w) => {
 
   const internals = {
 
   const internals = {
-    kEntryPoint: '.event-details',
-
     // Application entry point, for now just band to keyboard
 
     main() {
 
     // Application entry point, for now just band to keyboard
 
     main() {
 
-      window.document.addEventListener('keydown', internals._onKeyDown);
+      w.document.addEventListener('keydown', internals._onKeyDown);
     },
 
     // Handles key events to point to the correct blog post.
 
     },
 
     // Handles key events to point to the correct blog post.
 
-    _onKeyDown(event) {
+    _onKeyDown(e) {
 
 
-      if (['1','2','3'].indexOf(event.key) > -1) {
-        window.location.hash = event.key;
+      if (['1','2','3'].indexOf(e.key) > -1) {
+        w.location.hash = e.key;
       }
     }
   };
 
       }
     }
   };
 
-  window.addEventListener('load', internals.main);
+  w.addEventListener('load', internals.main);
 })(window);
 })(window);