2021-02-12 16:02:09 +00:00
|
|
|
/* global dijit, define */
|
2019-04-13 20:36:15 +00:00
|
|
|
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
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|