aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2012-12-06 14:25:48 -0500
committerScott González <scott.gonzalez@gmail.com>2012-12-06 14:31:21 -0500
commitb239298946b466a0c87a0c1ead4ccd75141ed740 (patch)
tree0269c2abcaef975cb28479ab0f7fd51a18c74183 /ui
parentebf8a601871c70ed4a7fdf28505fee6781d21504 (diff)
downloadjquery-ui-b239298946b466a0c87a0c1ead4ccd75141ed740.tar.gz
jquery-ui-b239298946b466a0c87a0c1ead4ccd75141ed740.zip
Allow higher cyclomatic complexity in functions that sanely use switch statements.
Diffstat (limited to 'ui')
-rw-r--r--ui/jquery.ui.accordion.js1
-rw-r--r--ui/jquery.ui.autocomplete.js1
-rw-r--r--ui/jquery.ui.dialog.js1
-rw-r--r--ui/jquery.ui.menu.js1
-rw-r--r--ui/jquery.ui.slider.js1
5 files changed, 5 insertions, 0 deletions
diff --git a/ui/jquery.ui.accordion.js b/ui/jquery.ui.accordion.js
index 7914f7c5f..60475b8ba 100644
--- a/ui/jquery.ui.accordion.js
+++ b/ui/jquery.ui.accordion.js
@@ -166,6 +166,7 @@ $.widget( "ui.accordion", {
},
_keydown: function( event ) {
+ /*jshint maxcomplexity:15*/
if ( event.altKey || event.ctrlKey ) {
return;
}
diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js
index 5edb84d44..c049b8569 100644
--- a/ui/jquery.ui.autocomplete.js
+++ b/ui/jquery.ui.autocomplete.js
@@ -66,6 +66,7 @@ $.widget( "ui.autocomplete", {
this._on( this.element, {
keydown: function( event ) {
+ /*jshint maxcomplexity:15*/
if ( this.element.prop( "readOnly" ) ) {
suppressKeyPress = true;
suppressInput = true;
diff --git a/ui/jquery.ui.dialog.js b/ui/jquery.ui.dialog.js
index eac818fe0..b2b8be8c0 100644
--- a/ui/jquery.ui.dialog.js
+++ b/ui/jquery.ui.dialog.js
@@ -553,6 +553,7 @@ $.widget("ui.dialog", {
},
_setOption: function( key, value ) {
+ /*jshint maxcomplexity:15*/
var isDraggable, isResizable,
uiDialog = this.uiDialog;
diff --git a/ui/jquery.ui.menu.js b/ui/jquery.ui.menu.js
index 45c1ec2e4..41a69c472 100644
--- a/ui/jquery.ui.menu.js
+++ b/ui/jquery.ui.menu.js
@@ -173,6 +173,7 @@ $.widget( "ui.menu", {
},
_keydown: function( event ) {
+ /*jshint maxcomplexity:20*/
var match, prev, character, skip, regex,
preventDefault = true;
diff --git a/ui/jquery.ui.slider.js b/ui/jquery.ui.slider.js
index d9fc1b132..02fee8364 100644
--- a/ui/jquery.ui.slider.js
+++ b/ui/jquery.ui.slider.js
@@ -119,6 +119,7 @@ $.widget( "ui.slider", $.ui.mouse, {
this._on( this.handles, {
keydown: function( event ) {
+ /*jshint maxcomplexity:25*/
var allowed, curVal, newVal, step,
index = $( event.target ).data( "ui-slider-handle-index" );