mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-08-06 06:07:29 +02: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
|
|
},
|
|
});
|
|
});
|