**** BEGIN LOGGING AT Wed Jan 07 02:59:58 2015 Jan 07 03:27:31 I'm creating a websocket Component, I can write to the socket just fine but I get the error "TypeError: this.bubble is not a function - Component.js:1158" when a message is received and the websocket.onmessage callback is called. Code: https://gist.github.com/hunternet93/7746d1cbafe37e6d3c1c I think it's a namespace issue, no idea how to fix though. Jan 07 03:44:38 what's the right way to connect an external function callback to an event? i'm doing socket.onmessage = this.onMessage now, but get the above error. Jan 07 03:54:41 hmm, looks like i completely misunderstood how javascript's "this" keyword works... Jan 07 04:36:27 hunternet93 you can use enyo.bind to preserve this context Jan 07 04:37:30 socket.onmessage = enyo.bind(this, function() { this.onMessage() }); Jan 07 04:41:09 shorter still works? socket.onmessage = this.bindSafely("onMessage"); Jan 07 04:41:55 you know, I bet it does sugardave, :-) thats new to me. Jan 07 04:43:18 or if you want to go directly to the thing listening in Enyo for onMessage, you could this.bindSafely("doMessage"); I guess it depends on what you need to do to what comes in on the socket Jan 07 05:08:32 nice! Jan 07 06:55:43 los lonely doges Jan 07 18:27:20 can't make Mac export via NFS and can't make Ubuntu connect to the VPN. Time for bailing wire and duct tape... Jan 07 18:48:03 morning enyoers Jan 07 19:00:35 hey Semanticfire_2! Jan 07 19:06:29 ey dmanderson Jan 07 19:10:34 How is it going? Jan 07 19:20:28 Hello folks, is there a way for me to have a kind, which has sub components that does not output a div? Jan 07 19:24:53 yes Jan 07 19:25:03 change the tag property to whatever you want that control to be Jan 07 19:25:04 I do that all the time Jan 07 19:25:26 {tag: "span"} for instance Jan 07 19:25:29 would tag:'' make it nothing? Jan 07 19:25:35 tag: null Jan 07 19:25:47 '' can cause issues Jan 07 19:25:50 awesome! Thanks Jan 07 19:25:51 but, if you're using enyo.Component, it doesn't have a tag anyway Jan 07 19:26:27 trex005: what are you trying to accomplish? Jan 07 19:27:31 I have a popup class that wraps onyx.Popup, but it's outputting a div which is making it visible when the popup is not Jan 07 19:30:34 you can try tag: null and see if that will work Jan 07 19:37:17 that worked beautifully, thanks! Jan 07 20:10:23 dmanderson: are you watching AGDQ? Jan 07 20:10:57 I am now :) Jan 07 20:11:28 :D Jan 07 20:11:52 All played on retail carts? Jan 07 20:12:45 Not normally played through PC emulation, if that's what you mean Jan 07 20:13:12 some of the classic games have been played using the Wii Virtual Console Jan 07 23:12:30 Enyo 2.5.1.1 is publicly available now. Jan 07 23:26:42 \o/ Jan 07 23:46:49 but I just started with 2.5.1 Jan 07 23:59:04 haha Jan 08 01:21:15 lol **** ENDING LOGGING AT Thu Jan 08 02:59:59 2015