2014-09-04 04:14:36 +00:00
|
|
|
/* globals Polymer */
|
|
|
|
|
2014-09-08 01:31:51 +00:00
|
|
|
Polymer( 'gui-row', {
|
2014-08-27 00:01:15 +00:00
|
|
|
|
2014-09-08 01:31:51 +00:00
|
|
|
comment: null,
|
|
|
|
commentOpen: false,
|
2014-10-11 19:39:16 +00:00
|
|
|
disabled: false,
|
2014-08-27 00:01:15 +00:00
|
|
|
|
2014-09-15 02:48:00 +00:00
|
|
|
ready: function() {},
|
2014-08-27 00:01:15 +00:00
|
|
|
|
2014-09-08 01:31:51 +00:00
|
|
|
openComment: function() {
|
|
|
|
this.commentOpen = true;
|
|
|
|
},
|
2014-08-27 00:01:15 +00:00
|
|
|
|
2014-09-08 01:31:51 +00:00
|
|
|
closeComment: function() {
|
|
|
|
this.commentOpen = false;
|
|
|
|
}
|
2014-08-27 00:01:15 +00:00
|
|
|
|
2014-09-08 01:31:51 +00:00
|
|
|
} );
|