Commit 7dc1a96b authored by Gergely Ujvari's avatar Gergely Ujvari

Allow client-side uri fragment search

Backend has changed to allow this a long time ago,
and as stream page performs frontend filtering too,
backend results weren't shown.
parent fc5ef2f5
...@@ -365,7 +365,7 @@ class ViewFilter ...@@ -365,7 +365,7 @@ class ViewFilter
uri: uri:
autofalse: (annotation) -> return not annotation.uri? autofalse: (annotation) -> return not annotation.uri?
value: (annotation) -> return annotation.uri value: (annotation) -> return annotation.uri
match: (term, value) -> return value is term match: (term, value) -> return value.indexOf(term) > -1
user: user:
autofalse: (annotation) -> return not annotation.user? autofalse: (annotation) -> return not annotation.user?
value: (annotation) -> return annotation.user value: (annotation) -> return annotation.user
......
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