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