Merge branch 'dev' into pr/15530

This commit is contained in:
w-e-w 2024-11-01 03:57:20 +09:00
commit ab4a5378c6
32 changed files with 330 additions and 138 deletions

View file

@ -29,10 +29,11 @@ const EXTRA_NETWORKS_INIT_DATA_TIMEOUT_MS = 60000;
const EXTRA_NETWORKS_FETCH_DATA_TIMEOUT_MS = 60000;
const EXTRA_NETWORKS_SETUP_DEBOUNCE_TIME_MS = 1000;
const re_extranet = /<([^:^>]+:[^:]+):[\d.]+>(.*)/;
const re_extranet = /<([^:^>]+:[^:]+):[\d.]+>(.*)/s;
const re_extranet_g = /<([^:^>]+:[^:]+):[\d.]+>/g;
const re_extranet_neg = /\(([^:^>]+:[\d.]+)\)/;
const re_extranet_g_neg = /\(([^:^>]+:[\d.]+)\)/g;
var globalPopup = null;
var globalPopupInner = null;
const storedPopupIds = {};