Commit 5a3673608fbc233af6d2ea2e7988040f29b2f6e2
Disable rating rendering
cel committed on 11/6/2017, 5:22:55 PMParent: f66b6d81d24f304e732a70bd98478b83f1c0aec8
Files changed
lib/render-msg.js | changed |
lib/render-msg.js | ||
---|---|---|
@@ -458,10 +458,12 @@ | ||
458 | 458 … | attendee: true, |
459 | 459 … | startDateTime: true, |
460 | 460 … | endDateTime: true, |
461 | 461 … | location: true, |
462 … | + /* | |
462 | 463 … | rating: true, |
463 | 464 … | ratingType: true, |
465 … | + */ | |
464 | 466 … | } |
465 | 467 … | |
466 | 468 … | RenderMsg.prototype.about = function (cb) { |
467 | 469 … | var keys = Object.keys(this.c).sort().join() |
@@ -532,15 +534,19 @@ | ||
532 | 534 … | h('img.ssb-avatar-image', { |
533 | 535 … | src: this.render.imageUrl(img), |
534 | 536 … | alt: ' ', |
535 | 537 … | })) : '', |
538 … | + /* | |
536 | 539 … | this.c.rating != null ? this.aboutRating() : '', |
540 … | + */ | |
537 | 541 … | extras ? this.valueTable(extras, 1, done()) |
538 | 542 … | : '' |
539 | 543 … | ], elCb) |
540 | 544 … | done(cb) |
541 | 545 … | } |
542 | 546 … | |
547 … | +/* | |
548 … | + * disabled until it's clearer how to do this -cel | |
543 | 549 … | RenderMsg.prototype.aboutRating = function (cb) { |
544 | 550 … | var rating = Number(this.c.rating) |
545 | 551 … | var type = this.c.ratingType || '★' |
546 | 552 … | var text = rating + ' ' + type |
@@ -553,8 +559,9 @@ | ||
553 | 559 … | )) |
554 | 560 … | } |
555 | 561 … | return el |
556 | 562 … | } |
563 … | +*/ | |
557 | 564 … | |
558 | 565 … | RenderMsg.prototype.contact = function (cb) { |
559 | 566 … | var self = this |
560 | 567 … | self.link(self.c.contact, function (err, a) { |
Built with git-ssb-web