Showing 350 of 970 total issues
Function invoke
has 51 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
invoke: function(query, passedArguments, context) {
var
object = instance,
maxDepth,
found,
Function item
has 51 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
item: function(value, strict) {
var
$selectedItem = false
;
value = (value !== undefined)
Function invoke
has 51 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
invoke: function(query, passedArguments, context) {
var
object = instance,
maxDepth,
found,
Function invoke
has 51 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
invoke: function(query, passedArguments, context) {
var
object = instance,
maxDepth,
found,
Function url
has 51 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
url: function(source) {
var
api = (settings.api)
? 1
: 0,
Function invoke
has 51 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
invoke: function(query, passedArguments, context) {
var
object = instance,
maxDepth,
found,
Function invoke
has 51 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
invoke: function(query, passedArguments, context) {
var
object = instance,
maxDepth,
found,
Function largePoint
has 50 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function largePoint(zr, effectList, shape, zlevel) {
var effect = shape.effect;
var color = effect.color || shape.style.strokeColor || shape.style.color;
var size = effect.scaleSize;
var shadowColor = effect.shadowColor || color;
Function get_options_pie
has 50 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function get_options_pie(titulo, subtitulo, legendData, series){
return {
title: {
text: titulo,
subtext: subtitulo,
Function makeResult
has 50 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function makeResult(newMin, newMax, section, expon) {
expon = expon || 0; // 这是中间计算量级,受步长增长、特别是最值锁定的影响,可能会小于基准量级,因为整数部分被过度放大
var expStep = expNum((newMax - newMin) / section, -1);
var expMin = expNum(newMin, -1, 1); // 锁定的最值有效数位可能很多,需要全精度保留
var expMax = expNum(newMax, -1);
Function pointList
has 50 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function pointList(zr, oldShape, newShape, duration, easing) {
var newPointList = newShape.style.pointList;
var newPointListLen = newPointList.length;
var oldPointList;
Function actualizar
has 49 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
$scope.actualizar = function (filterFunction) {
var point;
var marker;
var data = {};
if (typeof(filterFunction) === 'function') {
Function slide
has 48 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
var slide = function() {
// add class animatable to the slideshow grid
classie.addClass( self.slideshow, 'animatable' );
// overlays:
Function inicializar
has 48 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
$scope.inicializar = function () {
$scope.last = {};
//
$scope.modalTitle = "";
//
Function argsort
has 47 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
argsort : kwargs(function (axis, order, out) {
if (axis < 0) {
axis = this._shape.length + axis;
}
if (!this._size) {
Function fetch
has 47 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
fetch: function(tabPath, fullTabPath) {
var
$tab = module.get.tabElement(tabPath),
apiSettings = {
dataType : 'html',
Function markline
has 46 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function markline(zr, oldShape, newShape, duration, easing) {
easing = easing || 'QuinticOut';
newShape.__animating = true;
zr.addShape(newShape);
var newShapeStyle = newShape.style;
Function filter
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
filter: function(searchTerm) {
var
$results = $(),
escapedTerm = module.escape.regExp(searchTerm),
exactRegExp = new RegExp('^' + escapedTerm, 'igm'),
Function hideModal
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
hideModal: function(callback, keepDimmed) {
callback = $.isFunction(callback)
? callback
: function(){}
;
Function ring
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function ring(zr, oldShape, newShape, duration, easing) {
var x = newShape.style.x;
var y = newShape.style.y;
var r0 = newShape.style.r0;
var r = newShape.style.r;