From dd655dfdf3d591a970519e14c45d2f2b0d1a47ae Mon Sep 17 00:00:00 2001 From: Alain Prouté Date: Sun, 21 Sep 2014 17:59:58 +0000 Subject: [PATCH] - --- anubis_dev/library/web/making_a_web_site.anubis | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/anubis_dev/library/web/making_a_web_site.anubis b/anubis_dev/library/web/making_a_web_site.anubis index c072537..92040fa 100644 --- a/anubis_dev/library/web/making_a_web_site.anubis +++ b/anubis_dev/library/web/making_a_web_site.anubis @@ -721,10 +721,12 @@ public type Actioner_Connection: https. // use secured connection public type Other_Window_Option: - resizable, // the new window may be resized by the client - scrollbars, // the new window has scrollbars + resizable, // the new window may be resized by the client + scrollbars, // the new window has scrollbars width(Word32), // the new window has the specified width - height(Word32). // the new window has the specified height + height(Word32), // the new window has the specified height + left(Word32), // horizontal position on screen + top(Word32). // vertical position on screen public type Actioner_Target: same, @@ -2527,7 +2529,9 @@ define String resizable then "resizable", scrollbars then "scrollbars", width(w) then "width="+w, - height(h) then "height="+h + height(h) then "height="+h, + left(x) then "left="+x, + top(y) then "top="+y } + if tail is [ ] then "" else (","+format(tail)) }. -- libgit2 0.21.4