[gimp-web] content: small styling fix.



commit db4f74067972c4e64f9ffbf309c90b312a496f2d
Author: Jehan <jehan girinstud io>
Date:   Fri Oct 14 01:40:43 2022 +0200

    content: small styling fix.
    
    How did a non-breaking space character 0xa0 got in there? It was still working,
    but just too ugly for me to ignore!

 content/js/mastodon.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/content/js/mastodon.js b/content/js/mastodon.js
index 0df273af..47ec1e07 100644
--- a/content/js/mastodon.js
+++ b/content/js/mastodon.js
@@ -53,7 +53,7 @@ var shareForms = document.querySelectorAll('.mastodon-share-form');
 /* Clicking mastodon links hide/show the form. */
 var mastodonLinks = document.querySelectorAll('.mastodon-share-button')
 
-for(let i = 0; i < mastodonLinks.length; i++) {
+for (let i = 0; i < mastodonLinks.length; i++) {
   var shareLink = mastodonLinks[i].dataset.link
   var shareTitle = mastodonLinks[i].dataset.title
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]