11 lines
246 B
JavaScript
11 lines
246 B
JavaScript
|
import Ember from 'ember';
|
||
|
|
||
|
export default Ember.Component.extend({
|
||
|
'data-test-hover-copy': true,
|
||
|
classNameBindings: 'alwaysShow:hover-copy-button-static:hover-copy-button',
|
||
|
copyValue: null,
|
||
|
alwaysShow: false,
|
||
|
|
||
|
tooltipText: 'Copy',
|
||
|
});
|