swift1

Results 9 comments of swift1

@caitp boredtropolis! ( _❛‿❛)/˚°◦:octopus:!!! :star: !!!:octopus:◦°˚(❛‿❛_ ) ![img](https://avatars3.githubusercontent.com/u/2294695?v=3&s=460)

Just put it inside `data` in the main app and use `inherit: true` in the child components.

I can't log in with github either. The email is public. ![wtf](https://cloud.githubusercontent.com/assets/3023661/10014948/1acdcff4-6147-11e5-8432-47aa5b605ea6.png)

@yyx990803 It works now, thanks. :+1:

I don't really have any opinion on this, but when it comes to content insertion, I really like the principle React uses, which is to write all the html to...

This would probably also work: ``` javascript $(document.body).on('change', 'select[name^="dropdown"]', function () { this.functionName(); }.bind(this)); ``` But most likely, `this` is not the right thing to use here. Just give your...

Ye it works just fine. Just click on the button and then click somewhere else to trigger the blur event. http://jsfiddle.net/hajkrupo/4/

Very nice solution, but `| key enter` doesn't work. Replace it with `| key 'enter'` and everything works great. :)

Ye, jquery will of course lead to spaghetti code. :smile: I've extended @simplesmiler's example to give you a possible solution: https://jsfiddle.net/48jxvnzt/2/ If you don't want to use any global functions...