angelakuo/citydogshare

View on GitHub
public/assets/jquery-ui/button-0218c64981bfcf8efd0a4f36aad4481acca2c3db2e21db904fb888767e1349c3.js

Summary

Maintainability
F
4 days
Test Coverage

File button-0218c64981bfcf8efd0a4f36aad4481acca2c3db2e21db904fb888767e1349c3.js has 1011 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/*!
 * jQuery UI Core 1.11.4
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors

    Function _create has 115 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        _create: function() {
            this.element.closest( "form" )
                .unbind( "reset" + this.eventNamespace )
                .bind( "reset" + this.eventNamespace, formResetHandler );
    
    

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

      $.widget = function( name, base, prototype ) {
          var fullName, existingConstructor, constructor, basePrototype,
              // proxiedPrototype allows the provided prototype to remain unmodified
              // so that it can be used as a mixin for multiple widgets (#8876)
              proxiedPrototype = {},

        Function bridge has 46 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        $.widget.bridge = function( name, object ) {
            var fullName = object.prototype.widgetFullName || name;
            $.fn[ name ] = function( options ) {
                var isMethodCall = typeof options === "string",
                    args = widget_slice.call( arguments, 1 ),

          Function name has 43 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              $.fn[ name ] = function( options ) {
                  var isMethodCall = typeof options === "string",
                      args = widget_slice.call( arguments, 1 ),
                      returnValue = this;
          
          

            Function _on has 38 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                _on: function( suppressDisabledCheck, element, handlers ) {
                    var delegateElement,
                        instance = this;
            
                    // no suppressDisabledCheck flag, shuffle arguments

              Function _resetButton has 35 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  _resetButton: function() {
                      if ( this.type === "input" ) {
                          if ( this.options.label ) {
                              this.element.val( this.options.label );
                          }

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

                    option: function( key, value ) {
                        var options = key,
                            parts,
                            curOption,
                            i;

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

                      _determineButtonType: function() {
                          var ancestor, labelSelector, checked;
                  
                          if ( this.element.is("[type=checkbox]") ) {
                              this.type = "checkbox";

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

                        _createWidget: function( options, element ) {
                            element = $( element || this.defaultElement || this )[ 0 ];
                            this.element = $( element );
                            this.uuid = widget_uuid++;
                            this.eventNamespace = "." + this.widgetName + this.uuid;

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

                          refresh: function() {
                              //See #8237 & #8828
                              var isDisabled = this.element.is( "input, button" ) ? this.element.is( ":disabled" ) : this.element.hasClass( "ui-button-disabled" );
                      
                              if ( isDisabled !== this.options.disabled ) {

                        There are no issues that match your filters.

                        Category
                        Status