Rails 4 Gotcha Asynchronous Loading of Javascript that finally fixed the problem. The fix is:
Change:
<%= javascript_include_tag "application", "data-turbolinks-track" => true, async: true %>
to
I know this is a quick hack. Ideally, we should define a configuration variable to read and set the flag value in development.rb and production.rb. That's for another iteration and deploy. It works in development, now, I will see how it works in production for some time.