Changeset 214

Show
Ignore:
Timestamp:
05/08/07 16:12:57 (6 years ago)
Author:
robert
Message:

added some missing variable declarations

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • jala/trunk/code/Form.js

    r211 r214  
    292292jala.Form.createComponents = function(container, arr) { 
    293293   var components = []; 
     294   var element; 
    294295   for (var i=0; i<arr.length; i++) { 
    295296      element = arr[i]; 
     
    603604 */ 
    604605jala.Form.Component = function Component(name) { 
     606   /** 
     607    * The Form this component belongs to 
     608    * @type jala.Form 
     609    * @private 
     610    */ 
     611   var form; 
    605612 
    606613   /**