Allow hyphens in Wikipedia subdomain

When recognizing a Wikipedia tag value as a URL, allow hyphens in the URL subdomain, e.g. zh-min-nan.wikipedia.org.
This commit is contained in:
Minh Nguyễn
2015-06-14 09:30:43 -07:00
parent 7b4c6d2a16
commit ce101bdb02

View File

@@ -84,7 +84,7 @@ iD.ui.preset.wikipedia = function(field, context) {
function change() {
var value = title.value(),
m = value.match(/https?:\/\/([a-z]+)\.wikipedia\.org\/wiki\/(.+)/),
m = value.match(/https?:\/\/([-a-z]+)\.wikipedia\.org\/wiki\/(.+)/),
l = m && _.find(iD.data.wikipedia, function(d) { return m[1] === d[2]; });
if (l) {