dat.gui/elements/gui-row/gui-row.js
George Michael Brower 8b13c1b403 style
2014-09-07 22:43:10 -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;
}
} );