+ formatPlaceType: function (aPlace) {
+ var sOut = aPlace.class + ':' + aPlace.type;
+ if (aPlace.type && aPlace.type === 'administrative' && aPlace.place_type) {
+ sOut = sOut + ' (' + aPlace.place_type + ')';
+ }
+ return new Handlebars.SafeString(sOut);
+ },