engineyard/todo

View on GitHub

Showing 131 of 145 total issues

File jquery.js has 6116 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/*!
 * jQuery JavaScript Library v1.6.1
 * http://jquery.com/
 *
 * Copyright 2011, John Resig
Severity: Major
Found in public/javascripts/jquery.js - About 2 wks to fix

    Function jQuery has 571 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    var jQuery = (function() {
    
    // Define a local copy of jQuery
    var jQuery = function( selector, context ) {
            // The jQuery object is actually just the init constructor 'enhanced'
    Severity: Major
    Found in public/javascripts/jquery.js - About 2 days to fix

      Function ajax has 239 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          ajax: function( url, options ) {
      
              // If url is an object, simulate pre-1.5 signature
              if ( typeof url === "object" ) {
                  options = url;
      Severity: Major
      Found in public/javascripts/jquery.js - About 1 day to fix

        Function support has 131 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        jQuery.support = (function() {
        
            var div = document.createElement( "div" ),
                documentElement = document.documentElement,
                all,
        Severity: Major
        Found in public/javascripts/jquery.js - About 5 hrs to fix

          Consider simplifying this complex logical expression.
          Open

                  if ( event.pageX == null && event.clientX != null ) {
                      var eventDocument = event.target.ownerDocument || document,
                          doc = eventDocument.documentElement,
                          body = eventDocument.body;
          
          
          Severity: Critical
          Found in public/javascripts/jquery.js - About 5 hrs to fix

            Function Sizzle has 108 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            var Sizzle = function( selector, context, results, seed ) {
                results = results || [];
                context = context || document;
            
                var origContext = context;
            Severity: Major
            Found in public/javascripts/jquery.js - About 4 hrs to fix

              Function send has 86 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                              send: function( headers, complete ) {
              
                                  // Get a new xhr
                                  var xhr = s.xhr(),
                                      handle,
              Severity: Major
              Found in public/javascripts/jquery.js - About 3 hrs to fix

                Function remove has 85 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    remove: function( elem, types, handler, pos ) {
                        // don't do events on text and comment nodes
                        if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
                            return;
                        }
                Severity: Major
                Found in public/javascripts/jquery.js - About 3 hrs to fix

                  Function animate has 80 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      animate: function( prop, speed, easing, callback ) {
                          var optall = jQuery.speed(speed, easing, callback);
                  
                          if ( jQuery.isEmptyObject( prop ) ) {
                              return this.each( optall.complete, [ false ] );
                  Severity: Major
                  Found in public/javascripts/jquery.js - About 3 hrs to fix

                    Function trigger has 80 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        trigger: function( event, data, elem, onlyHandlers ) {
                            // Event object or event type
                            var type = event.type || event,
                                namespaces = [],
                                exclusive;
                    Severity: Major
                    Found in public/javascripts/jquery.js - About 3 hrs to fix

                      Function clean has 78 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          clean: function( elems, context, fragment, scripts ) {
                              var checkScriptType;
                      
                              context = context || document;
                      
                      
                      Severity: Major
                      Found in public/javascripts/jquery.js - About 3 hrs to fix

                        Consider simplifying this complex logical expression.
                        Open

                        if ( "getBoundingClientRect" in document.documentElement ) {
                            jQuery.fn.offset = function( options ) {
                                var elem = this[0], box;
                        
                                if ( options ) {
                        Severity: Critical
                        Found in public/javascripts/jquery.js - About 3 hrs to fix

                          Function add has 73 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                              add: function( elem, types, handler, data ) {
                                  if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
                                      return;
                                  }
                          
                          
                          Severity: Major
                          Found in public/javascripts/jquery.js - About 2 hrs to fix

                            Function done has 67 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                                    function done( status, statusText, responses, headers ) {
                            
                                        // Called once
                                        if ( state === 2 ) {
                                            return;
                            Severity: Major
                            Found in public/javascripts/jquery.js - About 2 hrs to fix

                              Function filter has 67 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                              Sizzle.filter = function( expr, set, inplace, not ) {
                                  var match, anyFound,
                                      old = expr,
                                      result = [],
                                      curLoop = set,
                              Severity: Major
                              Found in public/javascripts/jquery.js - About 2 hrs to fix

                                Function init has 65 lines of code (exceeds 25 allowed). Consider refactoring.
                                Open

                                    init: function( selector, context, rootjQuery ) {
                                        var match, elem, ret, doc;
                                
                                        // Handle $(""), $(null), or $(undefined)
                                        if ( !selector ) {
                                Severity: Major
                                Found in public/javascripts/jquery.js - About 2 hrs to fix

                                  Function _Deferred has 63 lines of code (exceeds 25 allowed). Consider refactoring.
                                  Open

                                      _Deferred: function() {
                                          var // callbacks list
                                              callbacks = [],
                                              // stored [ context , args ]
                                              fired,
                                  Severity: Major
                                  Found in public/javascripts/jquery.js - About 2 hrs to fix

                                    Function liveHandler has 61 lines of code (exceeds 25 allowed). Consider refactoring.
                                    Open

                                    function liveHandler( event ) {
                                        var stop, maxLevel, related, match, handleObj, elem, j, i, l, data, close, namespace, ret,
                                            elems = [],
                                            selectors = [],
                                            events = jQuery._data( this, "events" );
                                    Severity: Major
                                    Found in public/javascripts/jquery.js - About 2 hrs to fix

                                      Function Deferred has 59 lines of code (exceeds 25 allowed). Consider refactoring.
                                      Open

                                          Deferred: function( func ) {
                                              var deferred = jQuery._Deferred(),
                                                  failDeferred = jQuery._Deferred(),
                                                  promise;
                                              // Add errorDeferred methods, then and promise
                                      Severity: Major
                                      Found in public/javascripts/jquery.js - About 2 hrs to fix

                                        Function ajaxConvert has 57 lines of code (exceeds 25 allowed). Consider refactoring.
                                        Open

                                        function ajaxConvert( s, response ) {
                                        
                                            // Apply the dataFilter if provided
                                            if ( s.dataFilter ) {
                                                response = s.dataFilter( response, s.dataType );
                                        Severity: Major
                                        Found in public/javascripts/jquery.js - About 2 hrs to fix
                                          Severity
                                          Category
                                          Status
                                          Source
                                          Language