Browse Source

Avoid browser's spell-checking the Expression field (#4728)

Signed-off-by: Ariya Hidayat <ariya.hidayat@gmail.com>
pull/4752/head
Ariya Hidayat 6 years ago committed by Simon Pasquier
parent
commit
a0ba9b7f3e
  1. 138
      web/ui/assets_vfsdata.go
  2. 2
      web/ui/static/js/graph/graph_template.handlebar

138
web/ui/assets_vfsdata.go

File diff suppressed because one or more lines are too long

2
web/ui/static/js/graph/graph_template.handlebar

@ -2,7 +2,7 @@
<form class="query_form form-inline">
<div class="row">
<div class="col-lg-10">
<textarea rows="1" placeholder="Expression (press Shift+Enter for newlines)" name="expr" id="expr{{id}}" class="form-control expression_input" data-provide="typeahead" autocomplete="off">{{expr}}</textarea>
<textarea rows="1" placeholder="Expression (press Shift+Enter for newlines)" name="expr" id="expr{{id}}" class="form-control expression_input" data-provide="typeahead" autocomplete="off" spellcheck="false">{{expr}}</textarea>
</div>
<div class="col-lg-2">
<div class="eval_stats pull-right"></div>

Loading…
Cancel
Save