mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 04:52:00 +08:00
11 lines
204 B
JavaScript
11 lines
204 B
JavaScript
import computed from 'ember-addons/ember-computed-decorators';
|
|
|
|
export default Ember.Component.extend({
|
|
tagName: '',
|
|
|
|
@computed('src')
|
|
cdnSrc(src) {
|
|
return Discourse.getURLWithCDN(src);
|
|
}
|
|
});
|