mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	Fix an issue with some pages throwing 'not defined' js exceptions (#7450)
Fix an issue introduced by 831288cc91
Signed-off-by: Gary Kim <gary@garykim.dev>
			
			
This commit is contained in:
		@@ -11,7 +11,9 @@ var csrf;
 | 
				
			|||||||
var suburl;
 | 
					var suburl;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Disable Dropzone auto-discover because it's manually initialized
 | 
					// Disable Dropzone auto-discover because it's manually initialized
 | 
				
			||||||
Dropzone.autoDiscover = false;
 | 
					if (typeof(Dropzone) !== "undefined") {
 | 
				
			||||||
 | 
					    Dropzone.autoDiscover = false;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Polyfill for IE9+ support (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/from)
 | 
					// Polyfill for IE9+ support (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/from)
 | 
				
			||||||
if (!Array.from) {
 | 
					if (!Array.from) {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user