mirror of
				https://git.tt-rss.org/fox/tt-rss.git
				synced 2025-11-03 21:31:04 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			271 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			271 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
/* global dijit, define */
 | 
						|
define(["dojo/_base/declare", "dijit/form/Select"], function (declare) {
 | 
						|
	return declare("fox.form.Select", dijit.form.Select, {
 | 
						|
		focus: function() {
 | 
						|
			return; // Stop dijit.form.Select from keeping focus after closing the menu
 | 
						|
		},
 | 
						|
	});
 | 
						|
});
 |