dat.gui/elements/gui-row/gui-row.js
George Michael Brower 8d86460ebd kill strict
2014-09-09 16:00:15 -04:00

21 lines
271 B
JavaScript

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