Skip to content

Commit c42a07a

Browse files
committed
All: Standard spacing inside selector strings
Closes jquerygh-1521
1 parent dc67037 commit c42a07a

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

tests/unit/accordion/accordion_common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ TestHelpers.commonWidgetTests( "accordion", {
1010
collapsible: false,
1111
disabled: false,
1212
event: "click",
13-
header: "> li > :first-child,> :not(li):even",
13+
header: "> li > :first-child, > :not(li):even",
1414
heightStyle: "auto",
1515
icons: {
1616
"activeHeader": "ui-icon-triangle-1-s",

tests/unit/draggable/draggable_common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ TestHelpers.commonWidgetTests( "draggable", {
22
defaults: {
33
appendTo: "parent",
44
axis: false,
5-
cancel: "input,textarea,button,select,option",
5+
cancel: "input, textarea, button, select, option",
66
classes: {},
77
connectToSortable: false,
88
containment: false,

tests/unit/resizable/resizable_common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ TestHelpers.commonWidgetTests( "resizable", {
66
animateEasing: "swing",
77
aspectRatio: false,
88
autoHide: false,
9-
cancel: "input,textarea,button,select,option",
9+
cancel: "input, textarea, button, select, option",
1010
classes: {
1111
"ui-resizable-se": "ui-icon ui-icon-gripsmall-diagonal-se"
1212
},

tests/unit/selectable/selectable_common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ TestHelpers.commonWidgetTests("selectable", {
22
defaults: {
33
appendTo: "body",
44
autoRefresh: true,
5-
cancel: "input,textarea,button,select,option",
5+
cancel: "input, textarea, button, select, option",
66
classes: {},
77
delay: 0,
88
disabled: false,

tests/unit/slider/slider_common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
TestHelpers.commonWidgetTests( "slider", {
22
defaults: {
33
animate: false,
4-
cancel: "input,textarea,button,select,option",
4+
cancel: "input, textarea, button, select, option",
55
classes: {
66
"ui-slider": "ui-corner-all",
77
"ui-slider-handle": "ui-corner-all",

tests/unit/sortable/sortable_common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ TestHelpers.commonWidgetTests( "sortable", {
22
defaults: {
33
appendTo: "parent",
44
axis: false,
5-
cancel: "input,textarea,button,select,option",
5+
cancel: "input, textarea, button, select, option",
66
classes: {},
77
connectWith: false,
88
containment: false,

ui/accordion.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ return $.widget( "ui.accordion", {
4444
},
4545
collapsible: false,
4646
event: "click",
47-
header: "> li > :first-child,> :not(li):even",
47+
header: "> li > :first-child, > :not(li):even",
4848
heightStyle: "auto",
4949
icons: {
5050
activeHeader: "ui-icon-triangle-1-s",

ui/mouse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ $( document ).mouseup( function() {
3535
return $.widget("ui.mouse", {
3636
version: "@VERSION",
3737
options: {
38-
cancel: "input,textarea,button,select,option",
38+
cancel: "input, textarea, button, select, option",
3939
distance: 1,
4040
delay: 0
4141
},

ui/tabs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ return $.widget( "ui.tabs", {
481481

482482
// allow overriding how to find the list for rare usage scenarios (#7715)
483483
_getList: function() {
484-
return this.tablist || this.element.find( "ol,ul" ).eq( 0 );
484+
return this.tablist || this.element.find( "ol, ul" ).eq( 0 );
485485
},
486486

487487
_createPanel: function( id ) {

0 commit comments

Comments
 (0)