12345678910111213 |
- /* Brazilian initialisation for the jQuery UI multiselect plugin. */
- /* Written by Vinícius Fontoura Corrêa (vinusfc@gmail.com). */
-
- (function ( $ ) {
-
- $.extend($.ech.multiselect.prototype.options, {
- checkAllText: 'Marcar todos',
- uncheckAllText: 'Desmarcar todos',
- noneSelectedText: 'Selecione as opções',
- selectedText: '# selecionado'
- });
-
- })( jQuery );
|