in index.js [418:439]
function renderImplementation (implementations) {
var implNodes = implementations.map(function (impl) {
return html('a', {
href: GITHUB_BASE_URL + impl.account + '/' + impl.repository + '/' + impl.type + '/' + impl.id
}, [
impl.repository,
impl.type === 'pull' ? '#' : '@',
impl.id.substr(0, 7)
])
})
implNodes = _joinNodes(implNodes, ', ')
var label = 'Implementation: '
return html('div', { className: 'proposal-detail' }, [
html('div', { className: 'proposal-detail-label' }, [label]),
html('div', { className: 'implementation-list proposal-detail-value' },
implNodes
)
])
}