source: sipes/cord/misc/form.js @ b9d4e2e

stableversion-3.0
Last change on this file since b9d4e2e was b354002, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el directorio del cord

  • Propiedad mode establecida a 100755
File size: 369 octetos
Línea 
1
2Drupal.behaviors.multiselectSelector = function() {
3  // Automatically selects the right radio button in a multiselect control.
4  $('.multiselect select:not(.multiselectSelector-processed)')
5    .addClass('multiselectSelector-processed').change(function() {
6      $('.multiselect input:radio[value="'+ this.id.substr(5) +'"]')
7        .attr('checked', true);
8  });
9};
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.