public
Description: JavaScript Application Framework - JS library only
Homepage: http://www.sproutcore.com
Clone URL: git://github.com/sproutit/sproutcore.git
Fixed typo in split view that could impact using multiple views
sproutit (author)
Tue Jul 22 12:14:02 -0700 2008
commit  6c21f0f331e0877866b1ea747b8d3ac2d5b1388f
tree    d67348054ff6eaa230023abede6633f04360f486
parent  4bba855e0a594d5f8bddb130ab0e55f25f74277d
...
111
112
113
114
 
115
116
117
...
111
112
113
 
114
115
116
117
0
@@ -111,7 +111,7 @@ SC.SplitView = SC.View.extend(SC.DelegateSupport,
0
     var total = this.get('innerFrame') ;
0
     available = (direction == SC.HORIZONTAL) ? total.width : total.height ;
0
     var views = this.get('childNodes') ;
0
- var idx = view.length ;
0
+ var idx = views.length ;
0
     var flexibleView = this.get('flexibleView') ;
0
     while(--idx >= 0) {
0
       var currentView = views[idx] ;

Comments

    No one has commented yet.