phodal/diaonan

View on GitHub

Showing 191 of 191 total issues

Avoid deeply nested control flow statements.
Open

                        for ( c = 0, cl = classNames.length; c < cl; c++ ) {
                            if ( setClass.indexOf( " " + classNames[ c ] + " " ) < 0 ) {
                                setClass += classNames[ c ] + " ";
                            }
                        }
Severity: Major
Found in app/assets/js/jquery-1.8.2.js - About 45 mins to fix

    Avoid deeply nested control flow statements.
    Open

                            for ( type in data.events ) {
                                if ( special[ type ] ) {
                                    jQuery.event.remove( elem, type );
    
                                // This is a shortcut to avoid jQuery.event.remove's overhead
    Severity: Major
    Found in app/assets/js/jquery-1.8.2.js - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                                          if ( xhrOnUnloadAbort ) {
                                              delete xhrCallbacks[ handle ];
                                          }
      Severity: Major
      Found in app/assets/js/jquery-1.8.2.js - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                                            if ( xml && xml.documentElement /* #4958 */ ) {
                                                responses.xml = xml;
                                            }
        Severity: Major
        Found in app/assets/js/jquery-1.8.2.js - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                                  if ( ret === false ) {
                                      event.preventDefault();
                                      event.stopPropagation();
                                  }
          Severity: Major
          Found in app/assets/js/jquery-1.8.2.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 app/assets/js/jquery-1.8.2.js - About 45 mins to fix

              Avoid deeply nested control flow statements.
              Open

                                  if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&
                                      contains( context, elem ) && elem.id === m ) {
                                      results.push( elem );
                                      return results;
                                  }
              Severity: Major
              Found in app/assets/js/jquery-1.8.2.js - About 45 mins to fix

                Avoid deeply nested control flow statements.
                Open

                                                if ( elem === node ) {
                                                    break;
                                                }
                Severity: Major
                Found in app/assets/js/jquery-1.8.2.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 app/assets/js/jquery-1.8.2.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 app/assets/js/jquery-1.8.2.js - About 45 mins to fix

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

                          init: function( elem, options, prop, end, easing, unit ) {
                      Severity: Minor
                      Found in app/assets/js/jquery-1.8.2.js - About 45 mins to fix

                        Avoid deeply nested control flow statements.
                        Open

                                                if ( !name.indexOf( "data-" ) ) {
                                                    name = jQuery.camelCase( name.substring(5) );
                        
                                                    dataAttr( elem, name, data[ name ] );
                                                }
                        Severity: Major
                        Found in app/assets/js/jquery-1.8.2.js - About 45 mins to fix

                          Avoid deeply nested control flow statements.
                          Open

                                                  if ( elem.id !== match[2] ) {
                                                      return rootjQuery.find( selector );
                                                  }
                          Severity: Major
                          Found in app/assets/js/jquery-1.8.2.js - About 45 mins to fix

                            Avoid deeply nested control flow statements.
                            Open

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

                              Avoid deeply nested control flow statements.
                              Open

                                                      if ( ret[r] === ret[n] ) {
                                                          ret.splice(n--, 1);
                                                          break;
                                                      }
                              Severity: Major
                              Found in app/assets/js/jquery-1.8.2.js - About 45 mins to fix

                                Avoid deeply nested control flow statements.
                                Open

                                                        if ( name in thisCache ) {
                                                            name = [ name ];
                                                        } else {
                                                            name = name.split(" ");
                                                        }
                                Severity: Major
                                Found in app/assets/js/jquery-1.8.2.js - About 45 mins to fix

                                  Avoid deeply nested control flow statements.
                                  Open

                                                              if ( matcher( elem, context, xml ) ) {
                                                                  elem.sizset = true;
                                                                  return elem;
                                                              }
                                  Severity: Major
                                  Found in app/assets/js/jquery-1.8.2.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 app/assets/js/jquery-1.8.2.js - About 45 mins to fix

                                      Similar blocks of code found in 2 locations. Consider refactoring.
                                      Open

                                              this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
                                      Severity: Minor
                                      Found in app/assets/js/bootstrap/bootstrap-tooltip.js and 1 other location - About 45 mins to fix
                                      app/assets/js/bootstrap/bootstrap-tooltip.js on lines 52..52

                                      Duplicated Code

                                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                      Tuning

                                      This issue has a mass of 50.

                                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                      Refactorings

                                      Further Reading

                                      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 app/assets/js/jquery-1.8.2.js - About 45 mins to fix
                                        Severity
                                        Category
                                        Status
                                        Source
                                        Language