dat.gui/elements/gui-row/gui-row.js
George Michael Brower d19dc2ef40 style
2014-09-07 21:31:51 -04:00

22 lines
285 B
JavaScript

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