未验证 提交 6abf5937 编写于 作者: M Mr.doob 提交者: GitHub

Merge pull request #19887 from Mugen87/dev32

Examples: Trim search terms.
......@@ -232,7 +232,7 @@
function updateFilter() {
var v = filterInput.value;
var v = filterInput.value.trim();
if ( v !== '' ) {
......@@ -266,7 +266,7 @@
var link = links[ file ];
var name = getName( file );
if ( file in tags ) file += tags[ file ].join( ' ' );
if ( file in tags ) file += ' ' + tags[ file ].join( ' ' );
var res = file.match( exp );
var text;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册