Skip to content
This repository has been archived by the owner on Jan 10, 2020. It is now read-only.

Commit

Permalink
[fix bug #2528279] Replacing .trim() with YAHOO.lang's version.
Browse files Browse the repository at this point in the history
  • Loading branch information
jenny committed Aug 5, 2009
1 parent 6c188be commit 431ad63
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions build/datatable/datatable-debug.js
Expand Up @@ -4387,7 +4387,7 @@ _repaintOpera : (ua.opera) ?
function() {
if(ua.opera) {
document.documentElement.className += " ";
document.documentElement.className.trim();
document.documentElement.className = YAHOO.lang.trim(document.documentElement.className);
}
} : function() {} ,

Expand Down Expand Up @@ -15350,7 +15350,7 @@ setColumnWidth : function(oColumn, nWidth) {
* Scrolls to given row or cell
*
* @method scrollTo
* @param to {YAHOO.widget.Record | } Scroll to item.
* @param to {YAHOO.widget.Record | HTMLElement } Itme to scroll to.
*/
scrollTo : function(to) {
var td = this.getTdEl(to);
Expand Down

0 comments on commit 431ad63

Please sign in to comment.