Yes, and a few other issues with that. OK, that is FINALLY fixed....

On Mon, Aug 24, 2015 at 8:09 AM, Rolf Huehne <rhue...@fli-leibniz.de> wrote:

> On 08/18/2015 07:06 AM, Robert Hanson wrote:
> >
> http://sourceforge.net/projects/jmol/files/Jmol-beta/Jmol%2014.3/Jmol%2014.3.16/
> >
> > Now holds the latest test build that I hope will lead to Jmol 14.4.0
> > release later this week or next.
> >
> > I would it if you would test it if you have a site and have the time to
> do
> > that.
> >
> A bug fixed in mid June (thread: "Function call with hash parameter -
> case conversion") seems to be back:
>
> ---- Examples --------------------------------------------------
> function hashTest(parameterHash) {
>     show parameterHash;
> }
>
> function callHashTest1() {
>     var firstParam  = "p1_b";
>     var secondparam = "p2_b";
>
>     print "  --- Brackets 1a (direct) ------";
>     hashTest([firstParam: "p1_a", secondParam: "p2_a"]);
>     print "\n  --- Brackets 1b (by variable) ------";
>     hashTest([firstParam: firstParam, secondParam: secondParam]);
>
>     print "\n  --- Braces 1a (direct) ------";
>     hashTest({"firstParam": "p1_a", "secondParam": "p2_b"});
>     print "\n  --- Braces 1b (by variable) ------";
>     hashTest({"firstParam": firstParam, "secondParam": secondParam});
> }
>
> print "===== Function call from function 1 ======";
> callHashTest1;
> ---- Example Output ---------------------------------------------
> ===== Function call from function 1 ======
>     --- Brackets 1a (direct) ------
> parameterHash = { "firstparam":"p1_a","secondparam":"p2_a" }
>
>     --- Brackets 1b (by variable) ------
> parameterHash = { "firstparam":"p1_b","secondparam":"p2_b" }
>
>
------------------------------------------------------------------------------
_______________________________________________
Jmol-users mailing list
Jmol-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jmol-users

Reply via email to