Overview
Comment:Fix dialog open: default size to auto
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | stable
Files: files | file ages | folders
SHA3-256: 40a8f427008f009bc02b5b99da697c1689f21a48b73d7f1e8836c7e680a357b7
User & Date: bohwaz on 2023-04-24 21:50:38
Other Links: manifest | tags
Context
2023-04-27
19:09
Add running sum column in projects journals, from a patch by @zou check-in: d9c7780f41 user: bohwaz tags: trunk, stable
2023-04-24
21:50
Fix dialog open: default size to auto check-in: 40a8f42700 user: bohwaz tags: trunk, stable
2023-04-21
12:13
Make select default option to empty when changing multiple users category check-in: 6de4cbaae0 user: bohwaz tags: trunk, stable
Changes

Modified src/www/admin/static/scripts/global.js from [7d12b8f4e0] to [44dbf03b43].

159
160
161
162
163
164
165
166
167
168
169
170
171
172
173

		// Restore CSS defaults
		window.setTimeout(() => { g.dialog.style.opacity = ''; }, 50);

		return content;
	}

	g.openFrameDialog = function (url, height = '90%', callback) {
		var iframe = document.createElement('iframe');
		iframe.src = url;
		iframe.name = 'dialog';
		iframe.id = 'frameDialog';
		iframe.frameborder = '0';
		iframe.scrolling = 'yes';
		iframe.width = iframe.height = 0;







|







159
160
161
162
163
164
165
166
167
168
169
170
171
172
173

		// Restore CSS defaults
		window.setTimeout(() => { g.dialog.style.opacity = ''; }, 50);

		return content;
	}

	g.openFrameDialog = function (url, height = 'auto', callback) {
		var iframe = document.createElement('iframe');
		iframe.src = url;
		iframe.name = 'dialog';
		iframe.id = 'frameDialog';
		iframe.frameborder = '0';
		iframe.scrolling = 'yes';
		iframe.width = iframe.height = 0;