**** BEGIN LOGGING AT Thu Jun 14 02:59:58 2012 Jun 14 15:43:47 is there a way to programmatically send a tap? Jun 14 16:05:41 summatusmentis: this.bubble("tap"); perhaps? Jun 14 16:05:51 iirc it's just an event Jun 14 16:18:43 but how does that get targeted to a specific item? Jun 14 16:19:02 I wonder what the semantics of bubble are Jun 14 16:33:25 hrm Jun 14 16:33:46 destroying then attempting to recreate (and re-reference using the same name) doesn't work the way I was hoping Jun 14 16:33:49 crap Jun 14 16:34:53 oh, wait Jun 14 16:34:59 assigning the name works Jun 14 17:23:35 * DougReeder waves hello Jun 14 17:36:29 hi Jun 14 17:46:10 slow day here. I didn't have a chance to look at the new release last night. Jun 14 18:05:34 * madnificent shouts hello back Jun 14 18:58:36 hmmmmmm. I want to apply some styles to the first image in a div. soo I use img:first-child… but that ALSO includes any images that are wrapped in links. Jun 14 18:58:51 is there a css way to get the absolute first image of a div Jun 14 18:58:52 ? Jun 14 19:11:49 the answer is no Jun 14 19:13:31 Can you use the immediate child operator? (>) Jun 14 19:14:52 div > img:first-child Jun 14 19:16:57 oh goodness Jun 14 19:17:02 that works Jun 14 19:17:45 I definitely just spend the last hour trying to figure that out and failed Jun 14 19:18:20 DougReeder: thank you sir! Jun 14 19:18:46 I had resorted to document.querySelector("div img").className = "firstImage"; Jun 14 19:20:10 You're welcome! Jun 14 19:22:35 i didn't realize that's what you were asking Jun 14 19:23:46 well shoot. that's so close. That does in fact get the first-child img of the div, but it doesn't get the absolute first image Jun 14 19:23:53 (like if the image is wrapped in a link) Jun 14 19:24:05 looks like I'll use a combo of css and document.querySelector Jun 14 19:24:39 div > * > img Jun 14 19:24:49 but no, that doesn't work Jun 14 19:31:04 Tibfib: You need to select the first IMG in a DIV, regardless if it is the first child? Jun 14 19:31:48 yeah Jun 14 19:32:36 div > img:first-child, div > :first-child img Jun 14 19:33:54 ... that assumes the first child of the div doesn't contain more than one img Jun 14 19:35:13 Maybe div > img:first-child, div > :first-child > img Jun 14 19:36:09 hmmm, that isn't getting an image that is a child of a link that is halfway down the page Jun 14 19:36:37

blah blah

Jun 14 19:45:10 Perhaps you can change your HTML to be more CSS-friendly? Jun 14 19:45:43 can't, these are rss feeds :( Jun 14 19:45:57 but I think I've figured out what I'm going to do for now Jun 14 19:46:47 [nods] Jun 14 20:03:26 Tibfib: can't you reset the styling for a > img ? Jun 14 20:04:02 I could, but the absolute first image might be in a link as well Jun 14 20:04:07 soooo Jun 14 22:46:16 I want flex boxes Jun 15 01:58:55 Tibfib: you could probably port the flexboxes from enyo 1 to enyo 2, pretty easily, i'd guess. of course, that will limit your platforms. **** ENDING LOGGING AT Fri Jun 15 02:59:59 2012