forked from GithubMirrors/cardconjurer
		
	life
This commit is contained in:
		| @@ -321,4 +321,13 @@ function clockCheck(tappedPlayerBox, lastTapID) { | |||||||
|         tappedPlayerBox.holdTime = 0 |         tappedPlayerBox.holdTime = 0 | ||||||
|     } |     } | ||||||
| } | } | ||||||
|  | //Hopefully stops the pesky double-tap zoom: | ||||||
|  | var doubleTouchStartTimestamp = 0 | ||||||
|  | document.getElementById("mainGrid").addEventListener("touchstart", function() { | ||||||
|  |     var now = +(new Date()) | ||||||
|  |     if (doubleTouchStartTimestamp + 500 > now){ | ||||||
|  |         event.preventDefault() | ||||||
|  |     } | ||||||
|  |     doubleTouchStartTimestamp = now | ||||||
|  | }) | ||||||
| //Updated :D | //Updated :D | ||||||
|   | |||||||
| @@ -231,8 +231,8 @@ | |||||||
| 		width: 7.5em; | 		width: 7.5em; | ||||||
| 	} | 	} | ||||||
|     #inputWakeLock { |     #inputWakeLock { | ||||||
|         position: relative; |         /*position: relative; | ||||||
|         top: -0.2em; |         top: -0.2em;*/ | ||||||
|         margin: 0.25em; |         margin: 0.25em; | ||||||
|         height: auto; |         height: auto; | ||||||
|         width: auto; |         width: auto; | ||||||
| @@ -256,6 +256,5 @@ | |||||||
| 	} | 	} | ||||||
| </style> | </style> | ||||||
| <script src="data/life/NoSleep.js"></script> | <script src="data/life/NoSleep.js"></script> | ||||||
| <script src="https://gist.github.com/lucasdidthis/8a2ecf406634e9ad9ca1.js"></script> |  | ||||||
| <script src="data/life/life.js"></script> | <script src="data/life/life.js"></script> | ||||||
| <html> | <html> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Kyle
					Kyle