summary refs log tree commit diff
path: root/www
diff options
context:
space:
mode:
Diffstat (limited to 'www')
-rw-r--r--www/causal.agency/lands.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/www/causal.agency/lands.html b/www/causal.agency/lands.html
index fecd06bf..7aaadd80 100644
--- a/www/causal.agency/lands.html
+++ b/www/causal.agency/lands.html
@@ -75,7 +75,7 @@ function showCard(card) {
 }
 
 function resetChecks() {
-	for (c of "wubrg") {
+	for (let c of "wubrg") {
 		let input = document.getElementById(c);
 		input.checked = false;
 		input.disabled = false;
@@ -87,7 +87,7 @@ function checkChecks(card) {
 	let score = 0;
 	let total = 0;
 	let checked = 0;
-	for (c of "wubrg") {
+	for (let c of "wubrg") {
 		let input = document.getElementById(c);
 		let produced = card.produced_mana.includes(c.toUpperCase());
 		if (produced) {
@@ -104,7 +104,7 @@ function checkChecks(card) {
 }
 
 document.onkeydown = function(event) {
-	for (c of "wubrg") {
+	for (let c of "wubrg") {
 		if (event.key == c) {
 			let input = document.getElementById(c);
 			if (!input.disabled) input.checked ^= true;
ohover-highlight'> 2013-04-23Switch to base16-default colorschemeJune McEnroe 2013-03-26Replace nerdcommenter with vim-commentaryJune McEnroe 2013-03-24Add paredit.vimJune McEnroe 2013-03-14Update base16-vimJune McEnroe It's still crap 2013-03-12Hide mode from below statuslineJune McEnroe 2013-03-12Switch to powerlineJune McEnroe Which I'm not going to bother configuring because it thinks it's all fancy and for other things that aren't Vim so it stores its config file in ~/.config which I keep in a different repo and I only want to use it for Vim so fuck you, Powerline. </rant> 2013-03-12Remove vim-powerlineJune McEnroe 2013-02-03Update base16 and refheapJune McEnroe 2013-02-03Ignore plugin/private.vimJune McEnroe 2012-09-29Disable GUI dialogsJune McEnroe