Bug Tracker

Changeset 5601

Show
Ignore:
Timestamp:
05/14/08 20:10:39 (7 months ago)
Author:
aflesler
Message:

jquery core: closes #1480, isFunction is even tougher.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/jquery/src/core.js

    r5599 r5601  
    616616    isFunction: function( fn ) { 
    617617        return !!fn && typeof fn != "string" && !fn.nodeName && 
    618             fn.constructor != Array && /function/i.test( fn + "" ); 
     618            fn.constructor != Array && /^[\s[]?function/.test( fn + "" ); 
    619619    }, 
    620620