sfstanley/citydogshare

View on GitHub

Showing 257 of 576 total issues

Function drag has 76 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    drag: function( event, ui, draggable ) {
        $.each( draggable.sortables, function() {
            var innermostIntersecting = false,
                sortable = this;

Severity: Major
Found in app/assets/javascripts/jquery-ui.js - About 3 hrs to fix

    Consider simplifying this complex logical expression.
    Open

    !function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof exports?module.exports=a:a(jQuery)}(function(a){function b(b){var g=b||window.event,h=i.call(arguments,1),j=0,l=0,m=0,n=0,o=0,p=0;if(b=a.event.fix(g),b.type="mousewheel","detail"in g&&(m=-1*g.detail),"wheelDelta"in g&&(m=g.wheelDelta),"wheelDeltaY"in g&&(m=g.wheelDeltaY),"wheelDeltaX"in g&&(l=-1*g.wheelDeltaX),"axis"in g&&g.axis===g.HORIZONTAL_AXIS&&(l=-1*m,m=0),j=0===m?l:m,"deltaY"in g&&(m=-1*g.deltaY,j=m),"deltaX"in g&&(l=g.deltaX,0===m&&(j=-1*l)),0!==m||0!==l){if(1===g.deltaMode){var q=a.data(this,"mousewheel-line-height");j*=q,m*=q,l*=q}else if(2===g.deltaMode){var r=a.data(this,"mousewheel-page-height");j*=r,m*=r,l*=r}if(n=Math.max(Math.abs(m),Math.abs(l)),(!f||f>n)&&(f=n,d(g,n)&&(f/=40)),d(g,n)&&(j/=40,l/=40,m/=40),j=Math[j>=1?"floor":"ceil"](j/f),l=Math[l>=1?"floor":"ceil"](l/f),m=Math[m>=1?"floor":"ceil"](m/f),k.settings.normalizeOffset&&this.getBoundingClientRect){var s=this.getBoundingClientRect();o=b.clientX-s.left,p=b.clientY-s.top}return b.deltaX=l,b.deltaY=m,b.deltaFactor=f,b.offsetX=o,b.offsetY=p,b.deltaMode=0,h.unshift(b,j,l,m),e&&clearTimeout(e),e=setTimeout(c,200),(a.event.dispatch||a.event.handle).apply(this,h)}}function c(){f=null}function d(a,b){return k.settings.adjustOldDeltas&&"mousewheel"===a.type&&b%120===0}var e,f,g=["wheel","mousewheel","DOMMouseScroll","MozMousePixelScroll"],h="onwheel"in document||document.documentMode>=9?["wheel"]:["mousewheel","DomMouseScroll","MozMousePixelScroll"],i=Array.prototype.slice;if(a.event.fixHooks)for(var j=g.length;j;)a.event.fixHooks[g[--j]]=a.event.mouseHooks;var k=a.event.special.mousewheel={version:"3.1.12",setup:function(){if(this.addEventListener)for(var c=h.length;c;)this.addEventListener(h[--c],b,!1);else this.onmousewheel=b;a.data(this,"mousewheel-line-height",k.getLineHeight(this)),a.data(this,"mousewheel-page-height",k.getPageHeight(this))},teardown:function(){if(this.removeEventListener)for(var c=h.length;c;)this.removeEventListener(h[--c],b,!1);else this.onmousewheel=null;a.removeData(this,"mousewheel-line-height"),a.removeData(this,"mousewheel-page-height")},getLineHeight:function(b){var c=a(b),d=c["offsetParent"in a.fn?"offsetParent":"parent"]();return d.length||(d=a("body")),parseInt(d.css("fontSize"),10)||parseInt(c.css("fontSize"),10)||16},getPageHeight:function(b){return a(b).height()},settings:{adjustOldDeltas:!0,normalizeOffset:!0}};a.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})});
    Severity: Critical
    Found in app/assets/javascripts/jquery.datetimepicker.js - About 3 hrs to fix

      Class Dog has 26 methods (exceeds 20 allowed). Consider refactoring.
      Open

      class Dog < ActiveRecord::Base
        attr_accessible :name, :image, :dob, :gender, :description, :motto, :fixed, :health, :comments, :contact, :availability, :mixes, :likes, :energy_level, :size, :personalities, :photo, :latitude, :longitude, :video
      
        scope :has_gender, lambda {|genders| filter_gender(genders)}
        scope :has_personalities, lambda {|personalities| filter_personality(personalities)}
      Severity: Minor
      Found in app/models/dog.rb - About 3 hrs to fix

        Function _mouseStart has 75 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            _mouseStart: function(event, overrideHandle, noActivation) {
        
                var i, body,
                    o = this.options;
        
        
        Severity: Major
        Found in app/assets/javascripts/jquery-ui.js - About 3 hrs to fix

          Function _mouseDrag has 75 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              _mouseDrag: function(event) {
                  var i, item, itemElement, intersection,
                      o = this.options,
                      scrolled = false;
          
          
          Severity: Major
          Found in app/assets/javascripts/jquery-ui.js - About 3 hrs to fix

            Function _mouseDrag has 74 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                _mouseDrag: function(event) {
            
                    this.dragged = true;
            
                    if (this.options.disabled) {
            Severity: Major
            Found in app/assets/javascripts/jquery-ui.js - About 2 hrs to fix

              Function resize has 74 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  resize: function( event ) {
                      var woset, hoset, isParent, isOffsetRelative,
                          that = $( this ).resizable( "instance" ),
                          o = that.options,
                          co = that.containerOffset,
              Severity: Major
              Found in app/assets/javascripts/jquery-ui.js - About 2 hrs to fix

                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 = {},
                Severity: Major
                Found in app/assets/javascripts/jquery-ui.js - About 2 hrs to fix

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

                      _clear: function(event, noPropagation) {
                  
                          this.reverting = false;
                          // We delay all events that have to be triggered to after the point where the placeholder has been removed and
                          // everything else normalized again
                  Severity: Major
                  Found in app/assets/javascripts/jquery-ui.js - About 2 hrs to fix

                    Function load has 71 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        load : function( source, selector, config ) {
                    
                            var self = this,
                                o = this._options;
                    
                    
                    Severity: Major
                    Found in app/assets/javascripts/galleria-1.4.2.js - About 2 hrs to fix

                      Function _processTabs has 71 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          _processTabs: function() {
                              var that = this,
                                  prevTabs = this.tabs,
                                  prevAnchors = this.anchors,
                                  prevPanels = this.panels;
                      Severity: Major
                      Found in app/assets/javascripts/jquery-ui.js - About 2 hrs to fix

                        Function _contactContainers has 71 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            _contactContainers: function(event) {
                                var i, j, dist, itemWithLeastDistance, posProperty, sizeProperty, cur, nearBottom, floating, axis,
                                    innermostContainer = null,
                                    innermostIndex = null;
                        
                        
                        Severity: Major
                        Found in app/assets/javascripts/jquery-ui.js - About 2 hrs to fix

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

                              _create: function() {
                                  this.activeMenu = this.element;
                          
                                  // Flag used to prevent firing of the click handler
                                  // as the event bubbles up through nested menus
                          Severity: Major
                          Found in app/assets/javascripts/jquery-ui.js - About 2 hrs to fix

                            Function _keydown has 68 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                                _keydown: function( event ) {
                                    var match, prev, character, skip,
                                        preventDefault = true;
                            
                                    switch ( event.keyCode ) {
                            Severity: Major
                            Found in app/assets/javascripts/jquery-ui.js - About 2 hrs to fix

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

                                  _parseData : function( callback ) {
                              
                                      var self = this,
                                          current,
                                          ready = false,
                              Severity: Major
                              Found in app/assets/javascripts/galleria-1.4.2.js - About 2 hrs to fix

                                Consider simplifying this complex logical expression.
                                Open

                                        if (a && m._pf.overflow === -2) {
                                            overflow =
                                                a[MONTH]       < 0 || a[MONTH]       > 11  ? MONTH :
                                                a[DATE]        < 1 || a[DATE]        > daysInMonth(a[YEAR], a[MONTH]) ? DATE :
                                                a[HOUR]        < 0 || a[HOUR]        > 24 || (a[HOUR] === 24 && (a[MINUTE] !== 0 || a[SECOND] !== 0 || a[MILLISECOND] !== 0)) ? HOUR :
                                Severity: Critical
                                Found in app/assets/javascripts/moment.js - About 2 hrs to fix

                                  Function _generatePosition has 66 lines of code (exceeds 25 allowed). Consider refactoring.
                                  Open

                                      _generatePosition: function( event, constrainPosition ) {
                                  
                                          var containment, co, top, left,
                                              o = this.options,
                                              scrollIsRootNode = this._isRootNode( this.scrollParent[ 0 ] ),
                                  Severity: Major
                                  Found in app/assets/javascripts/jquery-ui.js - About 2 hrs to fix

                                    Function bounce has 64 lines of code (exceeds 25 allowed). Consider refactoring.
                                    Open

                                    var effectBounce = $.effects.effect.bounce = function( o, done ) {
                                        var el = $( this ),
                                            props = [ "position", "top", "bottom", "left", "right", "height", "width" ],
                                    
                                            // defaults:
                                    Severity: Major
                                    Found in app/assets/javascripts/jquery-ui.js - About 2 hrs to fix

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

                                          addPan : function( img ) {
                                      
                                              if ( this._options.imageCrop === false ) {
                                                  return;
                                              }
                                      Severity: Major
                                      Found in app/assets/javascripts/galleria-1.4.2.js - About 2 hrs to fix

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

                                            resize: function() {
                                                var outerDimensions,
                                                    that = $(this).resizable( "instance" ),
                                                    o = that.options,
                                                    cs = that.size,
                                        Severity: Major
                                        Found in app/assets/javascripts/jquery-ui.js - About 2 hrs to fix
                                          Severity
                                          Category
                                          Status
                                          Source
                                          Language