[git] gnupg-doc - branch, preview, updated. 67b374f2af799bc8268324d65e1710644ba17d37

by Kai Michaelis cvs at cvs.gnupg.org
Wed May 17 16:59:46 CEST 2017


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GnuPG website and other docs".

The branch, preview has been updated
       via  67b374f2af799bc8268324d65e1710644ba17d37 (commit)
      from  03c1f35512245cdbc44082f92ddb0fbf2bcb595a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 67b374f2af799bc8268324d65e1710644ba17d37
Author: Kai Michaelis <kai at gnupg.org>
Date:   Wed May 17 17:01:31 2017 +0200

    campaign: replace for .. of w/ plain for

diff --git a/web/share/campaign/campaign.js b/web/share/campaign/campaign.js
index 5bd0f91..ce3a896 100644
--- a/web/share/campaign/campaign.js
+++ b/web/share/campaign/campaign.js
@@ -61,7 +61,7 @@ $(document).ready(function() {
 $(document).ready(function() {
   let vals = ["500", "200", "100", "50", "20", "10", "5"];
 
-  for (let value of vals) {
+  for (let idx = 0; idx < vals.length; ++idx) {
     $(".amount-btn-" + value.toString()).attr("href", "#");
     $(".amount-btn-" + value.toString()).on("click", function() {
       $("#amountother").attr("value", value.toString());

-----------------------------------------------------------------------

Summary of changes:
 web/share/campaign/campaign.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
The GnuPG website and other docs
http://git.gnupg.org




More information about the Gnupg-commits mailing list