Browse Source

Fix problem with 'ь' in search (#1512)

Config.LatinizeMap have rule for 'ь' but it are not applied.
master
Aleksey Veselovskiy 7 years ago committed by Igor Zhukov
parent
commit
15fdefcc19
  1. 3
      app/js/lib/utils.js

3
app/js/lib/utils.js

@ -477,7 +477,8 @@ function versionCompare (ver1, ver2) { @@ -477,7 +477,8 @@ function versionCompare (ver1, ver2) {
var hasTag = text.charAt(0) == '%'
text = text.replace(badCharsRe, ' ').replace(trimRe, '')
text = text.replace(/[^A-Za-z0-9]/g, function (ch) {
return Config.LatinizeMap[ch] || ch
var latinizeCh = Config.LatinizeMap[ch]
return latinizeCh !== undefined ? latinizeCh : ch
})
text = text.toLowerCase()
if (hasTag) {

Loading…
Cancel
Save