Vertaling van "jQuery-rails" in Spaans
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
The easiest way to add jQuery to a Rails application is to use a gem called jQuery-rails so we'll add this gem to our application and then run bundle install again.
La manera más fácil de añadir jQuery a una aplicación Rails es utilizando una gema llamada jquery-rails, por lo que la añadiremos a la aplicación y ejecutaremos bundle install una vez más.
The example table uses jQuery UI and this is included in the jQuery-rails gem that's in our gemfile.
La tabla de ejemplo utiliza jQuery UI, que viene incluido en la gema jquery-rails que ya tenemos en el Gemfile.
It also includes the jQuery-rails gem so that we can use jQuery. (If you prefer to use Prototype there's a prototype-rails gem you can use instead.)
También incluye la gema jquery-rails para que podamos usar jQuery (los que prefieran usar Prototype pueden usar prototype-rails).
Firstly, as we're using jQuery in this application, we've added the jQuery-rails gem to the Gemfile.
Primero como estamos usando jQuery en nuestra aplicación hemos añadido la gema jquery-rails al Gemfile.
There's an interesting directory at the end of the list which comes from the jquery-rails gem that we've included in our application.
Al final aparece un directorio interesante que viene de la gema jquery-rails que hemos incluido en nuestra aplicación.
One of the useful things about the jquery-rails gem is that it automatically overrides the defaults that are included when we use the line ruby
Una de las cosas más útiles de la gema jquery-rails es que sobreescribe los valores por defecto que se generan cuando utilizamos la línea ruby
The jquery-rails gem is still listed but we can remove that and it won't be included in future versions of Rails::API.
También se lista la gema jquery-rails, pero podemos eliminarla (en futuras versiones de Rails::API no se incluirá).
This section also contains a gem called Uglifier which minifies the application's JavaScript code in production mode and the jquery-rails gem.
Esta sección contiene una gema llamada Uglifier que minimiza el código JavaScript de la aplicación en producción y la gema jquery-rails.
We haven't set up our application to use jQuery yet so we'll need to add the jQuery-rails gem to the Gemfile then run bundle to install it.
Aún no hemos configurado la aplicación para que utilice jQuery así que vamos a añadir la gema del fichero... -