Overview
Comment:Fix account selector missing number search
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | stable
Files: files | file ages | folders
SHA3-256: 52d0c4529cd429b2ce756ebb270f944c1b7303de4ff246bf593562c1b842d301
User & Date: bohwaz on 2022-11-08 13:26:12
Other Links: manifest | tags
Context
2022-11-09
13:32
Fix chart import country selector was not linked check-in: 88c8b928c8 user: bohwaz tags: trunk, stable
2022-11-08
13:26
Fix account selector missing number search check-in: 52d0c4529c user: bohwaz tags: trunk, stable
2022-11-07
23:52
Don't allow to change the country of a chart unless it's NULL check-in: 0d3c679467 user: bohwaz tags: trunk, stable, 1.2.1
Changes

Modified src/www/admin/static/scripts/selector.js from [5f77069dce] to [888d37741e].

14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
	};
});

var rows = document.querySelectorAll('table tr');

rows.forEach((e, k) => {
	e.classList.add('clickable');
	var l = e.querySelector('td').innerText + ' ' + e.querySelector('th').innerText;
	e.setAttribute('data-search-label', normalizeString(l));

	e.querySelector('button').onfocus = () => {
		if (f = document.querySelector('tr.focused')) {
			f.classList.remove('focused');
		}
		e.classList.add('focused');







|







14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
	};
});

var rows = document.querySelectorAll('table tr');

rows.forEach((e, k) => {
	e.classList.add('clickable');
	var l = e.querySelector('td.num').innerText + ' ' + e.querySelector('th').innerText;
	e.setAttribute('data-search-label', normalizeString(l));

	e.querySelector('button').onfocus = () => {
		if (f = document.querySelector('tr.focused')) {
			f.classList.remove('focused');
		}
		e.classList.add('focused');