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