mirror of
				https://bitbucket.org/s_l_teichmann/mtsatellite
				synced 2025-11-04 09:55:34 +01:00 
			
		
		
		
	Removed the radix 10 from parseInt calls as it is the default.
This commit is contained in:
		@@ -94,9 +94,9 @@ L.Control.AutoUpdate = L.Control.extend({
 | 
			
		||||
                if (coord == null) {
 | 
			
		||||
                    continue;
 | 
			
		||||
                }
 | 
			
		||||
                var y = parseInt(coord[1], 10);
 | 
			
		||||
                var x = parseInt(coord[2], 10);
 | 
			
		||||
                var z = parseInt(coord[3], 10);
 | 
			
		||||
                var y = parseInt(coord[1]);
 | 
			
		||||
                var x = parseInt(coord[2]);
 | 
			
		||||
                var z = parseInt(coord[3]);
 | 
			
		||||
                if (invalidate(x, y, z)) {
 | 
			
		||||
                    var idx = src.lastIndexOf('#');
 | 
			
		||||
                    if (idx >= 0) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user