Chen Ye
Chen Ye
I can reliably reproduce this with the following test-case: https://jsfiddle.net/Lq2mczh6/ Specific parameters to trigger this bug: 1. Child dom-repeat is nested inside a dom-if (doesn't matter if the 'if' is...
Looks like this was fixed in https://github.com/Polymer/polymer/pull/3439, and i can no longer repro in in v1.latest: https://jsbin.com/voritiduse/1/edit?html,output
Hmm, so this was an open source contribution, but they made it a paid feature?
Seeing a similar issue on Edge Dev 102.0.1235.1, but not on Edge 101.0.1210.32 nor Chrome (101.0.4951.54): 
My two use cases are similar to how I currently use the Jsonify family of types: * To ensure that an application state object as passed between a web worker...
What's the purpose of this pragma if you can just transpile it out? If the purpose of it is to guard against naughty developers/libraries doing something that clearly seems to...
oh good idea! I'll review this this weekend
already supported! see https://github.com/chen-ye/hubot-fb#sending-rich-messages-templates-images
Thats supported via the attachment payload as well - check the data recieved when an image is sent from the user to the bot
I tested using ``` robot.on "fb_richMsg", (envelope) -> res = new Response robot, envelope, undefined res.envelope.fb = { richMsg: { attachment: envelope.attachments[0] } } res.send() ``` Which echos back rich...