dat.gui/elements/gui-row/gui-row.js
George Michael Brower a81d61ba1b merge
2014-09-07 21:38:29 -04:00

22 lines
272 B
JavaScript

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