- Larry: Fix decorated selects in Opera
| | |
| | | $('.tabbed').each(function(idx, elem){ init_tabs(elem); }) |
| | | |
| | | // decorate select elements |
| | | if (!bw.opera) { |
| | | $('select.decorated').each(function(){ |
| | | if (bw.opera) { |
| | | $(this).removeClass('decorated'); |
| | | return; |
| | | } |
| | | |
| | | var title = $('option', this).first().text(); |
| | | if ($('option:selected', this).val() != '') |
| | | title = $('option:selected', this).text(); |
| | | |
| | | var select = $(this) |
| | | .change(function(){ |
| | | var val = $('option:selected', this).text(); |
| | |
| | | |
| | | select.parent().css('position', 'relative'); |
| | | }); |
| | | } |
| | | |
| | | $(document.body) |
| | | .bind('mouseup', body_mouseup) |