Skip to content

Commit

Permalink
Merge branch 'master' of yuisource.corp.yahoo.com:yui3
Browse files Browse the repository at this point in the history
  • Loading branch information
sdesai committed Jan 7, 2011
2 parents 9b4b74f + c861a90 commit 6c75dbf
Show file tree
Hide file tree
Showing 32 changed files with 154 additions and 45 deletions.
7 changes: 6 additions & 1 deletion build/autocomplete/autocomplete-debug.js
Expand Up @@ -2389,6 +2389,11 @@ List = Y.Base.create('autocompleteList', Y.Widget, [
} else {
this.set(ACTIVE_ITEM, null);
this._set(HOVERED_ITEM, null);

// Force a reflow to work around a glitch in IE6 and 7 where some of
// the contents of the list will sometimes remain visible after the
// container is hidden.
this._boundingBox.get('offsetWidth');
}
},

Expand Down Expand Up @@ -2690,7 +2695,7 @@ Y.AutoCompleteList = List;
Y.AutoComplete = List;


}, '@VERSION@' ,{lang:['en'], requires:['autocomplete-base', 'selector-css3', 'widget', 'widget-position', 'widget-position-align', 'widget-stack'], after:['autocomplete-sources'], skinnable:true});
}, '@VERSION@' ,{after:['autocomplete-sources'], requires:['autocomplete-base', 'selector-css3', 'widget', 'widget-position', 'widget-position-align', 'widget-stack'], lang:['en'], skinnable:true});
YUI.add('autocomplete-plugin', function(Y) {

/**
Expand Down
7 changes: 6 additions & 1 deletion build/autocomplete/autocomplete-list-debug.js
Expand Up @@ -476,6 +476,11 @@ List = Y.Base.create('autocompleteList', Y.Widget, [
} else {
this.set(ACTIVE_ITEM, null);
this._set(HOVERED_ITEM, null);

// Force a reflow to work around a glitch in IE6 and 7 where some of
// the contents of the list will sometimes remain visible after the
// container is hidden.
this._boundingBox.get('offsetWidth');
}
},

Expand Down Expand Up @@ -777,4 +782,4 @@ Y.AutoCompleteList = List;
Y.AutoComplete = List;


}, '@VERSION@' ,{lang:['en'], requires:['autocomplete-base', 'selector-css3', 'widget', 'widget-position', 'widget-position-align', 'widget-stack'], after:['autocomplete-sources'], skinnable:true});
}, '@VERSION@' ,{after:['autocomplete-sources'], requires:['autocomplete-base', 'selector-css3', 'widget', 'widget-position', 'widget-position-align', 'widget-stack'], lang:['en'], skinnable:true});
2 changes: 1 addition & 1 deletion build/autocomplete/autocomplete-list-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion build/autocomplete/autocomplete-list.js
Expand Up @@ -476,6 +476,11 @@ List = Y.Base.create('autocompleteList', Y.Widget, [
} else {
this.set(ACTIVE_ITEM, null);
this._set(HOVERED_ITEM, null);

// Force a reflow to work around a glitch in IE6 and 7 where some of
// the contents of the list will sometimes remain visible after the
// container is hidden.
this._boundingBox.get('offsetWidth');
}
},

Expand Down Expand Up @@ -777,4 +782,4 @@ Y.AutoCompleteList = List;
Y.AutoComplete = List;


}, '@VERSION@' ,{lang:['en'], requires:['autocomplete-base', 'selector-css3', 'widget', 'widget-position', 'widget-position-align', 'widget-stack'], after:['autocomplete-sources'], skinnable:true});
}, '@VERSION@' ,{after:['autocomplete-sources'], requires:['autocomplete-base', 'selector-css3', 'widget', 'widget-position', 'widget-position-align', 'widget-stack'], lang:['en'], skinnable:true});

0 comments on commit 6c75dbf

Please sign in to comment.