This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/components/genbank-url/component.js
Matthew Dillon e4f01246c2 Genbank URL
2015-06-11 13:57:35 -08:00

10 lines
262 B
JavaScript

import Ember from 'ember';
export default Ember.Component.extend({
tagName: 'a',
attributeBindings: ['href', 'target'],
href: function() {
return 'http://www.ncbi.nlm.nih.gov/nucleotide/' + this.get('genbank');
}.property(),
target: '_blank',
});