dat.gui/elements/gui-row/gui-row.js
George Michael Brower e523c634c5 folders
2014-10-11 15:39:16 -04:00

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;
}
} );