refac: 명장일람, 명예의 전당
This commit is contained in:
@@ -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();
|
||||
});
|
||||
@@ -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",
|
||||
|
||||
@@ -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();
|
||||
});
|
||||
Reference in New Issue
Block a user