Commit dd655dfdf3d591a970519e14c45d2f2b0d1a47ae
1 parent
090b3cd7
-
Showing
1 changed file
with
8 additions
and
4 deletions
Show diff stats
anubis_dev/library/web/making_a_web_site.anubis
| ... | ... | @@ -721,10 +721,12 @@ public type Actioner_Connection: |
| 721 | 721 | https. // use secured connection |
| 722 | 722 | |
| 723 | 723 | public type Other_Window_Option: |
| 724 | - resizable, // the new window may be resized by the client | |
| 725 | - scrollbars, // the new window has scrollbars | |
| 724 | + resizable, // the new window may be resized by the client | |
| 725 | + scrollbars, // the new window has scrollbars | |
| 726 | 726 | width(Word32), // the new window has the specified width |
| 727 | - height(Word32). // the new window has the specified height | |
| 727 | + height(Word32), // the new window has the specified height | |
| 728 | + left(Word32), // horizontal position on screen | |
| 729 | + top(Word32). // vertical position on screen | |
| 728 | 730 | |
| 729 | 731 | public type Actioner_Target: |
| 730 | 732 | same, |
| ... | ... | @@ -2527,7 +2529,9 @@ define String |
| 2527 | 2529 | resizable then "resizable", |
| 2528 | 2530 | scrollbars then "scrollbars", |
| 2529 | 2531 | width(w) then "width="+w, |
| 2530 | - height(h) then "height="+h | |
| 2532 | + height(h) then "height="+h, | |
| 2533 | + left(x) then "left="+x, | |
| 2534 | + top(y) then "top="+y | |
| 2531 | 2535 | } + if tail is [ ] then "" else (","+format(tail)) |
| 2532 | 2536 | }. |
| 2533 | 2537 | ... | ... |