зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1306460 - New console frontend: Fix text filtering. r=bgrins,r=nchevobbe
MozReview-Commit-ID: A0sEoQ2bzdo
This commit is contained in:
Родитель
a987b44a80
Коммит
fe85dc9030
|
@ -99,6 +99,9 @@ function search(messages, text = "") {
|
|||
}
|
||||
|
||||
function isTextInFrame(text, frame) {
|
||||
if (!frame) {
|
||||
return false;
|
||||
}
|
||||
// @TODO Change this to Object.values once it's supported in Node's version of V8
|
||||
return Object.keys(frame)
|
||||
.map(key => frame[key])
|
||||
|
|
Загрузка…
Ссылка в новой задаче