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