mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
27 lines
284 B
JavaScript
27 lines
284 B
JavaScript
/*
|
|
|
|
[ ] comment hover behavior
|
|
|
|
*/
|
|
|
|
Polymer('gui-row', {
|
|
|
|
comment: null,
|
|
|
|
commentOpen: false,
|
|
|
|
ready: function() {
|
|
|
|
|
|
|
|
},
|
|
|
|
openComment: function() {
|
|
this.commentOpen = true;
|
|
},
|
|
|
|
closeComment: function() {
|
|
this.commentOpen = false;
|
|
}
|
|
|
|
}); |