pjambet/beech-server

View on GitHub

Showing 137 of 166 total issues

Function access has 34 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    access: function( elems, fn, key, value, chainable, emptyGet, pass ) {
        var exec,
            bulk = key == null,
            i = 0,
            length = elems.length;
Severity: Minor
Found in doc/apidoc/javascripts/bundled/jquery-1.7.2.js - About 1 hr to fix

    Consider simplifying this complex logical expression.
    Open

                if ( match[1] === "nth" ) {
                    if ( !match[2] ) {
                        Sizzle.error( match[0] );
                    }
    
    
    Severity: Critical
    Found in doc/apidoc/javascripts/bundled/jquery-1.7.2.js - About 1 hr to fix

      Function closest has 33 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          closest: function( selectors, context ) {
              var ret = [], i, l, cur = this[0];
      
              // Array (deprecated as of jQuery 1.7)
              if ( jQuery.isArray( selectors ) ) {
      Severity: Minor
      Found in doc/apidoc/javascripts/bundled/jquery-1.7.2.js - About 1 hr to fix

        Function each has 33 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            each: function( object, callback, args ) {
                var name, i = 0,
                    length = object.length,
                    isObj = length === undefined || jQuery.isFunction( object );
        
        
        Severity: Minor
        Found in doc/apidoc/javascripts/bundled/jquery-1.7.2.js - About 1 hr to fix

          Function setOffset has 32 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              setOffset: function( elem, options, i ) {
                  var position = jQuery.css( elem, "position" );
          
                  // set position first, in-case top/left are set even on static elem
                  if ( position === "static" ) {
          Severity: Minor
          Found in doc/apidoc/javascripts/bundled/jquery-1.7.2.js - About 1 hr to fix

            Function ATTR has 32 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                    ATTR: function( elem, match ) {
                        var name = match[1],
                            result = Sizzle.attr ?
                                Sizzle.attr( elem, name ) :
                                Expr.attrHandle[ name ] ?
            Severity: Minor
            Found in doc/apidoc/javascripts/bundled/jquery-1.7.2.js - About 1 hr to fix

              Function slide has 31 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                , slide: function (type, next) {
                    var $active = this.$element.find('.active')
                      , $next = next || $active[type]()
                      , isCycling = this.interval
                      , direction = type == 'next' ? 'left' : 'right'
              Severity: Minor
              Found in doc/apidoc/javascripts/bundled/bootstrap.js - About 1 hr to fix

                Function cleanData has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    cleanData: function( elems ) {
                        var data, id,
                            cache = jQuery.cache,
                            special = jQuery.event.special,
                            deleteExpando = jQuery.support.deleteExpando;
                Severity: Minor
                Found in doc/apidoc/javascripts/bundled/jquery-1.7.2.js - About 1 hr to fix

                  Function cloneFixAttributes has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  function cloneFixAttributes( src, dest ) {
                      var nodeName;
                  
                      // We do not need to do anything for non-Elements
                      if ( dest.nodeType !== 1 ) {
                  Severity: Minor
                  Found in doc/apidoc/javascripts/bundled/jquery-1.7.2.js - About 1 hr to fix

                    Function dirCheck has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
                        for ( var i = 0, l = checkSet.length; i < l; i++ ) {
                            var elem = checkSet[i];
                    
                            if ( elem ) {
                    Severity: Minor
                    Found in doc/apidoc/javascripts/bundled/jquery-1.7.2.js - About 1 hr to fix

                      Function clone has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          clone: function( elem, dataAndEvents, deepDataAndEvents ) {
                              var srcElements,
                                  destElements,
                                  i,
                                  // IE<=8 does not properly clone detached, unknown element nodes
                      Severity: Minor
                      Found in doc/apidoc/javascripts/bundled/jquery-1.7.2.js - About 1 hr to fix

                        Function style has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            style: function( elem, name, value, extra ) {
                                // Don't set styles on text and comment nodes
                                if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
                                    return;
                                }
                        Severity: Minor
                        Found in doc/apidoc/javascripts/bundled/jquery-1.7.2.js - About 1 hr to fix

                          Function promise has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                              promise: function( type, object ) {
                                  if ( typeof type !== "string" ) {
                                      object = type;
                                      type = undefined;
                                  }
                          Severity: Minor
                          Found in doc/apidoc/javascripts/bundled/jquery-1.7.2.js - About 1 hr to fix

                            Function find has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                                find: function( selector ) {
                                    var self = this,
                                        i, l;
                            
                                    if ( typeof selector !== "string" ) {
                            Severity: Minor
                            Found in doc/apidoc/javascripts/bundled/jquery-1.7.2.js - About 1 hr to fix

                              Function show has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                                  show: function( speed, easing, callback ) {
                                      var elem, display;
                              
                                      if ( speed || speed === 0 ) {
                                          return this.animate( genFx("show", 3), speed, easing, callback );
                              Severity: Minor
                              Found in doc/apidoc/javascripts/bundled/jquery-1.7.2.js - About 1 hr to fix

                                Function html has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                                Open

                                    html: function( value ) {
                                        return jQuery.access( this, function( value ) {
                                            var elem = this[0] || {},
                                                i = 0,
                                                l = this.length;
                                Severity: Minor
                                Found in doc/apidoc/javascripts/bundled/jquery-1.7.2.js - About 1 hr to fix

                                  Function setup has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                                  Open

                                          setup: function() {
                                  
                                              if ( rformElems.test( this.nodeName ) ) {
                                                  // IE doesn't fire change on a check/radio until blur; trigger it on click
                                                  // after a propertychange. Eat the blur-change in special.change.handle.
                                  Severity: Minor
                                  Found in doc/apidoc/javascripts/bundled/jquery-1.7.2.js - About 1 hr to fix

                                    Function addClass has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                                    Open

                                        addClass: function( value ) {
                                            var classNames, i, l, elem,
                                                setClass, c, cl;
                                    
                                            if ( jQuery.isFunction( value ) ) {
                                    Severity: Minor
                                    Found in doc/apidoc/javascripts/bundled/jquery-1.7.2.js - About 1 hr to fix

                                      Function fire has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                                      Open

                                              fire = function( context, args ) {
                                                  args = args || [];
                                                  memory = !flags.memory || [ context, args ];
                                                  fired = true;
                                                  firing = true;
                                      Severity: Minor
                                      Found in doc/apidoc/javascripts/bundled/jquery-1.7.2.js - About 1 hr to fix

                                        Function > has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                                        Open

                                                ">": function( checkSet, part ) {
                                                    var elem,
                                                        isPartStr = typeof part === "string",
                                                        i = 0,
                                                        l = checkSet.length;
                                        Severity: Minor
                                        Found in doc/apidoc/javascripts/bundled/jquery-1.7.2.js - About 1 hr to fix
                                          Severity
                                          Category
                                          Status
                                          Source
                                          Language