dat.gui/elements/gui-row/gui-row.js
2014-09-03 21:14:51 -07:00

22 lines
259 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;
}
});