get the CI tests fully working again

This commit is contained in:
bwdutton
2020-02-01 14:17:33 -08:00
parent d3c281d485
commit 761de1b42f
8 changed files with 171 additions and 118 deletions

View File

@@ -41,18 +41,18 @@
});
$('body').on('click', '.g-button', function() {
var a = $(this);
if (a.find('span.ui-icon-seek-next, span.ui-icon-seek-end, span.ui-icon-seek-prev, span.ui-icon-seek-first').length > 0) {
event.stopPropagation();
$.scrollTo(0, 800, { easing: "swing" });
a.parents(".ui-tabs-panel").load(
a.attr("href"),
function() {
fix_links();
});
var a = $(this);
if (a.find('span.ui-icon-seek-next, span.ui-icon-seek-end, span.ui-icon-seek-prev, span.ui-icon-seek-first').length > 0) {
event.stopPropagation();
$.scrollTo(0, 800, { easing: "swing" });
a.parents(".ui-tabs-panel").load(
a.attr("href"),
function() {
fix_links();
});
return false;
}
return false;
}
});
</script>