mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 13:35:56 +00:00
fix various minor issues reported by eslint
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
/* global dijit */
|
||||
/* global dijit, define */
|
||||
|
||||
define(["dojo/_base/declare", "dijit/Toolbar"], function (declare) {
|
||||
return declare("fox.Toolbar", dijit.Toolbar, {
|
||||
_onContainerKeydown: function(/* Event */ e) {
|
||||
_onContainerKeydown: function(/* Event */ /* e */) {
|
||||
return; // Stop dijit.Toolbar from interpreting keystrokes
|
||||
},
|
||||
_onContainerKeypress: function(/* Event */ e) {
|
||||
_onContainerKeypress: function(/* Event */ /* e */) {
|
||||
return; // Stop dijit.Toolbar from interpreting keystrokes
|
||||
},
|
||||
focus: function() {
|
||||
|
||||
Reference in New Issue
Block a user