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