reinhard    2003/07/30 11:19:38

  Modified:    src/webapp/samples/flow/calc calc.js
  Log:
  - fixing bug
  
  Revision  Changes    Path
  1.4       +1 -1      cocoon-2.1/src/webapp/samples/flow/calc/calc.js
  
  Index: calc.js
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/webapp/samples/flow/calc/calc.js,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- calc.js   14 Jul 2003 09:30:45 -0000      1.3
  +++ calc.js   30 Jul 2003 18:19:38 -0000      1.4
  @@ -22,7 +22,7 @@
   {
     var uri = "page/getNumber" + name.toUpperCase();
     cocoon.sendPageAndWait(uri, { "a" : a, "b" : b });
  -  return parseFloat(cocoon.request.name);
  +  return parseFloat(cocoon.request.getParameter(name));
   }
   
   function getOperator(a, b)
  
  
  

Reply via email to