mcramer
2012-10-30 c4485fa99cee7c12be528ff44d5f255a7f09df77
Fixed: IE8 did not like some of the javascript

1 files modified
6 ■■■■ changed files
interface/web/js/jquery.tipsy.js 6 ●●●● patch | view | raw | blame | history
interface/web/js/jquery.tipsy.js
@@ -278,8 +278,8 @@
                                            $.ui.autocomplete.escapeRegex(request.term) +
                                            ")(?![^<>]*>)(?![^&;]+;)", "gi"
                                        ), "<strong>$1</strong>" )),
                                    value: text,
                                    class: (select.hasClass('flags') ? 'country-' + $(this).val().toUpperCase() : $(this).attr('class')),
                                    'value': (text ? text : ''),
                                    'class': (select.hasClass('flags') ? 'country-' + ($(this).val() ? $(this).val().toUpperCase() : '') : $(this).attr('class')),
                                    option: this
                                };
                        }) );
@@ -352,7 +352,7 @@
                    .data( "item.autocomplete", item )
                    .append( "<a>" + item.label + "</a>" )
                    .appendTo( ul );
                if(item.class) el.addClass(item.class);
                if(item && item['class'] && el) el.addClass(item['class']);
                return el;
            };
            select.change(function(e) {