Commit c0935c84 by Ed Dawley

Fixing some grunt errors with the elasticsearch grammar changes

parent 17e040ab
......@@ -215,15 +215,15 @@ function (angular, _, config, kbn, moment) {
for (var i=0; i<string.length; i++) {
character = string[i];
if (character == opener) {
if (character === opener) {
count++;
} else if (character == closer) {
} else if (character === closer) {
count--;
}
}
return count > 0;
}
};
var tagsOnly = queryString.indexOf('tags!:') === 0;
if (tagsOnly) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment