Vulcan/client/views/posts/modules/post_domain.js

7 lines
162 B
JavaScript
Raw Normal View History

Template[getTemplate('postDomain')].helpers({
domain: function(){
var a = document.createElement('a');
a.href = this.url;
return a.hostname;
}
});