| 311 |
baseURL: document.location.protocol + '//' + document.location.hostname + (document.location.port=='' ? '' : (':' + document.location.port)) + '/bbs/', |
baseURL: document.location.protocol + '//' + document.location.hostname + (document.location.port=='' ? '' : (':' + document.location.port)) + '/bbs/', |
| 312 |
}); |
}); |
| 313 |
|
|
| 314 |
$(document).ready(function() { |
window.addEventListener("load", () => { |
| 315 |
$("#ex_dir").on("change", function(e) { |
var s = document.getElementById("ex_dir"); |
| 316 |
set_ex_dir($("#ex_dir").find(":selected").val()); |
if (s) |
| 317 |
}); |
{ |
| 318 |
|
s.addEventListener("change", (e) => { |
| 319 |
|
set_ex_dir(s.value); |
| 320 |
|
}); |
| 321 |
|
} |
| 322 |
|
|
| 323 |
$("#move_article").on("submit", (e) => { |
var f = document.getElementById("move_article"); |
| 324 |
e.preventDefault(); |
if (f) |
| 325 |
if ($("#move_article").find("#sid").find(":selected").val() > 0) |
{ |
| 326 |
{ |
f.addEventListener("submit", (e) => { |
| 327 |
move_article($("#move_article").find("#sid").find(":selected").val()); |
e.preventDefault(); |
| 328 |
} |
if (f.sid.value > 0) |
| 329 |
}); |
{ |
| 330 |
|
move_article(f.sid.value); |
| 331 |
|
} |
| 332 |
|
}); |
| 333 |
|
} |
| 334 |
|
}); |
| 335 |
|
|
| 336 |
|
$(document).ready(function() { |
| 337 |
$("img[class=auto_adjust]").on("load", function() { |
$("img[class=auto_adjust]").on("load", function() { |
| 338 |
if ($(this).width() > {$BBS_img_max_width}) |
if ($(this).width() > {$BBS_img_max_width}) |
| 339 |
{ |
{ |