refac: 명장일람, 명예의 전당

This commit is contained in:
2022-04-15 02:36:42 +09:00
parent 287ed83def
commit 84ed999708
9 changed files with 198 additions and 79 deletions
+10
View File
@@ -0,0 +1,10 @@
import "@scss/hallOfFame.scss";
import { auto500px } from "./util/auto500px";
import { insertCustomCSS } from "./util/customCSS";
import { htmlReady } from "./util/htmlReady";
auto500px();
htmlReady(() => {
insertCustomCSS();
});
+1
View File
@@ -6,6 +6,7 @@
"install": "install.ts",
"battle_simulator": "battle_simulator.ts",
"battleCenter": "battleCenter.ts",
"bestGeneral": "bestGeneral.ts",
"recent_map": "recent_map.ts",
"select_npc": "select_npc.ts",
"betting": "betting.ts",
+9 -3
View File
@@ -1,9 +1,15 @@
import "@scss/hallOfFame.scss";
import $ from 'jquery';
import { stringifyUrl } from 'query-string';
import { initTooltip } from "@/legacy/initTooltip";
import 'bootstrap';
import { auto500px } from './util/auto500px';
import { htmlReady } from './util/htmlReady';
import { insertCustomCSS } from './util/customCSS';
$(function ($) {
auto500px();
htmlReady(() => {
$('#by_scenario').on('change', function (e) {
e.preventDefault();
@@ -18,6 +24,6 @@ $(function ($) {
}
});
})
initTooltip();
insertCustomCSS();
});