dat.gui/elements/gui-row/gui-row.js
2014-09-03 14:47:32 -04:00

18 lines
245 B
JavaScript

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