Ruby on Rails Tuesday, October 15, 2019



On Tuesday, October 15, 2019 at 11:08:27 AM UTC-4, Ariel Juodziukynas wrote:
Do you see any error on the browser's console? first thing I notice just simple looking at it is it's missing all the ; at the end of the lines, maybe you have a syntax error on the browser's dev tools

El mar., 15 oct. 2019 a las 11:35, fugee ohu (<fuge...@gmail.com>) escribió:

var submit_messages;

$(document).on('turbolinks:load', function () {
    submit_messages()
})

submit_messages = function () {
    $('#message_content').on('keyDown', function (event) {
        if (event.keyCode === 13) {
            $('input').click()
            event.target.value = ''
            event.preventDefault()
            console.log('yes we hit enter!')
        }
        
    })
    
}

I got this from a youtube video titled Rails 6 - Real Time Chat App What doesn't make sense to me is why do we only clear the field if the enter key is pressed, why doesn't that work anyway (it doesn't clear the field) and why doesn't it log to console 'yes we hit enter!'

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonra...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/5c7f7223-915d-4960-89ad-5f3bd030568b%40googlegroups.com.

Sorry I just needed to  restart my browser After, I deleted my question because it works in firefox and chrome too Can you please delete

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/788c142e-e2e9-43d3-a755-af38923f247d%40googlegroups.com.

No comments:

Post a Comment