diff options
author | tw275@labyrinth.cl.cam.ac.uk <tw275@labyrinth.cl.cam.ac.uk> | 2004-08-16 13:04:39 +0000 |
---|---|---|
committer | tw275@labyrinth.cl.cam.ac.uk <tw275@labyrinth.cl.cam.ac.uk> | 2004-08-16 13:04:39 +0000 |
commit | 992c4d6f0bee1d82b9ca160a49e163ff0fa396cb (patch) | |
tree | 42cfa8f3fe1ae8e9a15a9902311929dc8f90cb9b /tools/sv/inc/script.js | |
parent | 636ff6f2888766da3afa13e23422321365d66871 (diff) | |
download | xen-992c4d6f0bee1d82b9ca160a49e163ff0fa396cb.tar.gz xen-992c4d6f0bee1d82b9ca160a49e163ff0fa396cb.tar.bz2 xen-992c4d6f0bee1d82b9ca160a49e163ff0fa396cb.zip |
bitkeeper revision 1.1159.32.1 (4120b0e7LRYrL1B3ICa0Qkit5txAbQ)
Added error checking, small button on domain list,
updated to be compatible with latest xend, and
some small changes to domain creation.
Diffstat (limited to 'tools/sv/inc/script.js')
-rwxr-xr-x | tools/sv/inc/script.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/sv/inc/script.js b/tools/sv/inc/script.js index fca5a972ab..47cd10399c 100755 --- a/tools/sv/inc/script.js +++ b/tools/sv/inc/script.js @@ -13,3 +13,10 @@ function doOp( op ) document.forms[0].op.value = op document.forms[0].submit() } + +function doOp2( op, args ) +{ + document.forms[0].op.value = op + document.forms[0].args.value = args + document.forms[0].submit() +} |