Fix many features for Internet Explorer 9 and 10

Please don't use "dataset" in scripts anymore, it doesn't work in IE9 or 10. Instead use $.data
This commit is contained in:
8chan 2015-02-20 01:51:06 -08:00 committed by czaks
parent 88f6088a42
commit 5176377045
7 changed files with 45 additions and 45 deletions

View file

@ -34,16 +34,16 @@ if (active_page == 'catalog') {
}
function searchToggle() {
var button = $('#catalog_search_button')[0];
var button = $('#catalog_search_button');
if (!button.dataset.expanded) {
button.dataset.expanded = '1';
button.innerText = 'Close';
if (!button.data('expanded')) {
button.data('expanded', '1');
button.text('Close');
$('.catalog_search').append(' <input id="search_field" style="border: inset 1px;">');
$('#search_field').focus();
} else {
delete button.dataset.expanded;
button.innerText = 'Search';
button.removeData('expanded');
button.text('Search');
$('.catalog_search').children().last().remove();
$('div[id="Grid"]>.mix').each(function () { $(this).css('display', 'inline-block'); });
}