Vulcan/client/views/posts/modules/post_domain.js
2015-04-13 14:52:03 +09:00

7 lines
No EOL
146 B
JavaScript

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