dat.gui/elements/gui-row/gui-row.js
George Michael Brower 542517793f no message
2014-09-02 21:54:58 -04:00

26 lines
283 B
JavaScript

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