js2ts: hallOfFame
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
import $ from 'jquery';
|
||||
import { stringifyUrl } from 'query-string';
|
||||
import { initTooltip } from './common_legacy';
|
||||
import Popper from 'popper.js';
|
||||
exportWindow(Popper, 'Popper');
|
||||
import 'bootstrap';
|
||||
import { exportWindow } from './util/exportWindow';
|
||||
|
||||
$(function ($) {
|
||||
$('#by_scenario').on('change', function (e) {
|
||||
e.preventDefault();
|
||||
|
||||
const $this = $(this);
|
||||
const scenarioIdx = $this.val();
|
||||
const seasonIdx = $(this).find('option:selected').data('season');
|
||||
|
||||
document.location.href = stringifyUrl({
|
||||
url: 'a_hallOfFame.php',
|
||||
query: {
|
||||
scenarioIdx: scenarioIdx, seasonIdx: seasonIdx
|
||||
}
|
||||
});
|
||||
})
|
||||
|
||||
initTooltip();
|
||||
});
|
||||
Reference in New Issue
Block a user