Compare commits

..

2 commits

Author SHA1 Message Date
j
e8e5ce415d enable autocomplete by default 2018-05-08 12:33:39 +01:00
j
7f895a8660 don't lookup filming location on map 2018-05-08 12:33:29 +01:00
2 changed files with 2 additions and 1 deletions

View file

@ -875,6 +875,7 @@ examples (config.SITENAME.jsonc) that are part of this pan.do/ra distribution.
"title": "Keywords",
"canAddAnnotations": {"member": true, "staff": true, "admin": true},
"item": "Keyword",
"autocomplete": true,
"overlap": true,
"type": "string"
},

View file

@ -493,7 +493,7 @@ pandora.ui.infoView = function(data) {
.css(css)
.html(
formatKey(Ox._('Filming Locations')) + data.filmingLocations.map(function(location) {
return '<a href="/map/@' + location + '">' + location + '</a>'
return '<a href="/' + location + '">' + location + '</a>'
}).join('; ')
)
.appendTo($text);