dat.gui/elements/gui-row/gui-row.js

19 lines
265 B
JavaScript

/* globals Polymer */
Polymer( 'gui-row', {
comment: null,
commentOpen: false,
ready: function() {},
openComment: function() {
this.commentOpen = true;
},
closeComment: function() {
this.commentOpen = false;
}
} );