cipele46/cipele46-web

View on GitHub

Showing 215 of 215 total issues

Avoid deeply nested control flow statements.
Open

                            if ( matcher( elem, context, xml ) ) {
                                elem.sizset = true;
                                return elem;
                            }
Severity: Major
Found in public/js/jquery.js - About 45 mins to fix

    Avoid deeply nested control flow statements.
    Open

                            for ( j = tbody.length - 1; j >= 0 ; --j ) {
                                if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length ) {
                                    tbody[ j ].parentNode.removeChild( tbody[ j ] );
                                }
                            }
    Severity: Major
    Found in public/js/jquery.js - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                              if ( deleteExpando ) {
                                  delete elem[ internalKey ];
      
                              } else if ( elem.removeAttribute ) {
                                  elem.removeAttribute( internalKey );
      Severity: Major
      Found in public/js/jquery.js - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                                if ( selMatch[ sel ] === undefined ) {
                                    selMatch[ sel ] = handleObj.needsContext ?
                                        jQuery( sel, this ).index( cur ) >= 0 :
                                        jQuery.find( sel, this, null, [ cur ] ).length;
                                }
        Severity: Major
        Found in public/js/jquery.js - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                                  if ( ret === false ) {
                                      event.preventDefault();
                                      event.stopPropagation();
                                  }
          Severity: Major
          Found in public/js/jquery.js - About 45 mins to fix

            Avoid deeply nested control flow statements.
            Open

                                        if ( !(unmatched[i] || setMatched[i]) ) {
                                            setMatched[i] = pop.call( results );
                                        }
            Severity: Major
            Found in public/js/jquery.js - About 45 mins to fix

              Avoid deeply nested control flow statements.
              Open

                                                  if ( !status && s.isLocal && !s.crossDomain ) {
                                                      status = responses.text ? 200 : 404;
                                                  // IE - #1450: sometimes returns 1223 when it should be 204
                                                  } else if ( status === 1223 ) {
                                                      status = 204;
              Severity: Major
              Found in public/js/jquery.js - About 45 mins to fix

                Function inspectPrefiltersOrTransports has 6 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR,
                        dataType /* internal */, inspected /* internal */ ) {
                Severity: Minor
                Found in public/js/jquery.js - About 45 mins to fix

                  Avoid deeply nested control flow statements.
                  Open

                                  } else if ( copy !== undefined ) {
                                      target[ name ] = copy;
                                  }
                  Severity: Major
                  Found in public/js/jquery.js - About 45 mins to fix

                    Avoid deeply nested control flow statements.
                    Open

                                        if ( (seed = find(
                                            token.matches[0].replace( rbackslash, "" ),
                                            rsibling.test( tokens[0].type ) && context.parentNode || context,
                                            xml
                                        )) ) {
                    Severity: Major
                    Found in public/js/jquery.js - About 45 mins to fix

                      Avoid deeply nested control flow statements.
                      Open

                      if(!c[n]){
                      c[n]=v[n];
                      }else{
                      c[n]=c[n].concat(v[n]);
                      }
                      Severity: Major
                      Found in public/js/css3-mediaqueries.js - About 45 mins to fix

                        Avoid deeply nested control flow statements.
                        Open

                        if(_43==="length"){
                        return ((min&&_46>=_44)||(max&&_46<_44)||(!min&&!max&&_46===_44));
                        }else{
                        return false;
                        }
                        Severity: Major
                        Found in public/js/css3-mediaqueries.js - About 45 mins to fix

                          Avoid deeply nested control flow statements.
                          Open

                          if("device-aspect-ratio"===_41.substring(l-19,l)){
                          return _43==="aspect-ratio"&&screen.width*_44[1]===screen.height*_44[0];
                          }else{
                          if("color-index"===_41.substring(l-11,l)){
                          var _48=Math.pow(2,screen.colorDepth);
                          Severity: Major
                          Found in public/js/css3-mediaqueries.js - About 45 mins to fix

                            Avoid deeply nested control flow statements.
                            Open

                            if(_42!==null){
                            if(_43==="length"){
                            return ((min&&_47>=_44)||(max&&_47<_44)||(!min&&!max&&_47===_44));
                            }else{
                            return false;
                            Severity: Major
                            Found in public/js/css3-mediaqueries.js - About 45 mins to fix

                              Avoid deeply nested control flow statements.
                              Open

                              if(_38.ABSOLUTE_VALUE){
                              _43="absolute";
                              _44=_42;
                              }else{
                              _43="unknown";
                              Severity: Major
                              Found in public/js/css3-mediaqueries.js - About 45 mins to fix

                                Consider simplifying this complex logical expression.
                                Open

                                if ( !jQuery.support.opacity ) {
                                    jQuery.cssHooks.opacity = {
                                        get: function( elem, computed ) {
                                            // IE uses filters for opacity
                                            return ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || "" ) ?
                                Severity: Major
                                Found in public/js/jquery.js - About 40 mins to fix

                                  Consider simplifying this complex logical expression.
                                  Open

                                              if ( matcher[ expando ] ) {
                                                  // Find the next relative operator (if any) for proper handling
                                                  j = ++i;
                                                  for ( ; j < len; j++ ) {
                                                      if ( Expr.relative[ tokens[j].type ] ) {
                                  Severity: Major
                                  Found in public/js/jquery.js - About 40 mins to fix

                                    Consider simplifying this complex logical expression.
                                    Open

                                            if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && getByName && data === undefined ) {
                                                return;
                                            }
                                    Severity: Major
                                    Found in public/js/jquery.js - About 40 mins to fix

                                      Consider simplifying this complex logical expression.
                                      Open

                                                      if ( ontype && elem[ type ] && ((type !== "focus" && type !== "blur") || event.target.offsetWidth !== 0) && !jQuery.isWindow( elem ) ) {
                                      
                                                          // Don't re-trigger an onFOO event when we call its FOO() method
                                                          old = elem[ ontype ];
                                      
                                      Severity: Major
                                      Found in public/js/jquery.js - About 40 mins to fix

                                        Function remove has 5 arguments (exceeds 4 allowed). Consider refactoring.
                                        Open

                                            remove: function( elem, types, handler, selector, mappedTypes ) {
                                        Severity: Minor
                                        Found in public/js/jquery.js - About 35 mins to fix
                                          Severity
                                          Category
                                          Status
                                          Source
                                          Language