Changeset 1866


Ignore:
Timestamp:
2011-02-23 16:01:38 (15 months ago)
Author:
mpo
Message:

ouch, dirty bug smashed - first step towards #448

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/modules/kauri-forms/kauri-forms-framework/src/main/kauri/static-{build}.key/kauri.forms/control.js

    r1863 r1866  
    489489        var last = elmIndex.length; 
    490490        for (var i = 0; i< last; i++) { 
    491             var elm = elmIndex[i++]; 
     491            var elm = elmIndex[i]; 
    492492            if(elm) 
    493493                allElms[size++] = elm; 
     
    19621962     */ 
    19631963    Control.prototype.show = function(){ 
    1964         this.eachElement(function() {$(this).show()}); 
     1964        this.eachElement(function() { 
     1965            $(this).show() 
     1966        }); 
    19651967        this.viewState = Control.STATE_VISIBLE; 
    19661968    } 
Note: See TracChangeset for help on using the changeset viewer.