push
github
56 of 145 branches covered (38.62%)
48 of 50 new or added lines in 5 files covered. (96.0%)
3395 existing lines in 78 files now uncovered.8599 of 20189 relevant lines covered (42.59%)
701.76 hits per line
UNCOV
1
|
/** @format */
|
|
UNCOV
2
|
|
× |
UNCOV
3
|
/* eslint no-template-curly-in-string: 0 */
|
× |
UNCOV
4
|
|
× |
5 |
define([ |
× |
UNCOV
6
|
"dijit/form/FilteringSelect",
|
× |
UNCOV
7
|
"dojo/_base/declare",
|
× |
UNCOV
8
|
"dojo/keys"
|
× |
UNCOV
9
|
], function (FilteringSelect, declare, keys) {
|
× |
10 |
return declare("lsmb/FilteringSelect", [FilteringSelect], { |
× |
UNCOV
11
|
autoComplete: false, |
× |
UNCOV
12
|
queryExpr: "*${0}*", |
× |
UNCOV
13
|
onKey: function (e) { |
× |
14 |
var d = this.dropDown; |
× |
15 |
if (d && e.keyCode === keys.TAB) {
|
× |
16 |
this.onChange(d.getHighlightedOption());
|
× |
UNCOV
17
|
} |
× |
18 |
return this.inherited(arguments); |
× |
UNCOV
19
|
} |
× |
UNCOV
20
|
}); |
× |
UNCOV
21
|
}); |
× |