Bug 35134: Save popup size to cookies and use that instead
Follow the original test-plan, open the pop-up and resize to whatever size. Close the pop-up, open again, notice it opens to the same size it was previously closed. Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
parent
d50baeabac
commit
da66e8ac83
1 changed files with 12 additions and 1 deletions
|
@ -38,7 +38,18 @@ function Click$function_name(ev) {
|
|||
let window_width = screen.width / 2;
|
||||
let window_height = screen.height;
|
||||
q = document.getElementById(ev.data.id);
|
||||
window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=cn_browser.pl&popup&q=\"+encodeURIComponent(q.value),\"cnbrowser\",\"width=\"+window_width+\"\,height=\"+window_height+\"\,toolbar=false,scrollbars=yes\");
|
||||
|
||||
if(Cookies.get(\"popup_window_height\") && Cookies.get(\"popup_window_width\")){
|
||||
window_width = Cookies.get(\"popup_window_width\");
|
||||
window_height = Cookies.get(\"popup_window_height\");
|
||||
}
|
||||
|
||||
var windowref = window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=cn_browser.pl&popup&q=\"+encodeURIComponent(q.value),\"cnbrowser\",\"width=\"+window_width+\"\,height=\"+window_height+\"\,toolbar=false,scrollbars=yes\");
|
||||
|
||||
windowref.onresize = function(){
|
||||
Cookies.set(\"popup_window_height\", windowref.innerHeight, { path: '/', sameSite: 'Lax' });
|
||||
Cookies.set(\"popup_window_width\", windowref.innerWidth, { path: '/', sameSite: 'Lax' });
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
|
|
Loading…
Reference in a new issue