summaryrefslogtreecommitdiff
path: root/js/form/Select.js
blob: 530880e2da732eeb1722ccf4b182427d43af1db3 (plain)
1
2
3
4
5
6
7
8
/* 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
		},
	});
});