All: Standard spacing inside selector strings

Closes gh-1521
This commit is contained in:
Scott González 2015-03-26 07:41:37 -04:00
parent dc6703756d
commit c42a07a2e3
9 changed files with 9 additions and 9 deletions

View File

@ -10,7 +10,7 @@ TestHelpers.commonWidgetTests( "accordion", {
collapsible: false, collapsible: false,
disabled: false, disabled: false,
event: "click", event: "click",
header: "> li > :first-child,> :not(li):even", header: "> li > :first-child, > :not(li):even",
heightStyle: "auto", heightStyle: "auto",
icons: { icons: {
"activeHeader": "ui-icon-triangle-1-s", "activeHeader": "ui-icon-triangle-1-s",

View File

@ -2,7 +2,7 @@ TestHelpers.commonWidgetTests( "draggable", {
defaults: { defaults: {
appendTo: "parent", appendTo: "parent",
axis: false, axis: false,
cancel: "input,textarea,button,select,option", cancel: "input, textarea, button, select, option",
classes: {}, classes: {},
connectToSortable: false, connectToSortable: false,
containment: false, containment: false,

View File

@ -6,7 +6,7 @@ TestHelpers.commonWidgetTests( "resizable", {
animateEasing: "swing", animateEasing: "swing",
aspectRatio: false, aspectRatio: false,
autoHide: false, autoHide: false,
cancel: "input,textarea,button,select,option", cancel: "input, textarea, button, select, option",
classes: { classes: {
"ui-resizable-se": "ui-icon ui-icon-gripsmall-diagonal-se" "ui-resizable-se": "ui-icon ui-icon-gripsmall-diagonal-se"
}, },

View File

@ -2,7 +2,7 @@ TestHelpers.commonWidgetTests("selectable", {
defaults: { defaults: {
appendTo: "body", appendTo: "body",
autoRefresh: true, autoRefresh: true,
cancel: "input,textarea,button,select,option", cancel: "input, textarea, button, select, option",
classes: {}, classes: {},
delay: 0, delay: 0,
disabled: false, disabled: false,

View File

@ -1,7 +1,7 @@
TestHelpers.commonWidgetTests( "slider", { TestHelpers.commonWidgetTests( "slider", {
defaults: { defaults: {
animate: false, animate: false,
cancel: "input,textarea,button,select,option", cancel: "input, textarea, button, select, option",
classes: { classes: {
"ui-slider": "ui-corner-all", "ui-slider": "ui-corner-all",
"ui-slider-handle": "ui-corner-all", "ui-slider-handle": "ui-corner-all",

View File

@ -2,7 +2,7 @@ TestHelpers.commonWidgetTests( "sortable", {
defaults: { defaults: {
appendTo: "parent", appendTo: "parent",
axis: false, axis: false,
cancel: "input,textarea,button,select,option", cancel: "input, textarea, button, select, option",
classes: {}, classes: {},
connectWith: false, connectWith: false,
containment: false, containment: false,

View File

@ -44,7 +44,7 @@ return $.widget( "ui.accordion", {
}, },
collapsible: false, collapsible: false,
event: "click", event: "click",
header: "> li > :first-child,> :not(li):even", header: "> li > :first-child, > :not(li):even",
heightStyle: "auto", heightStyle: "auto",
icons: { icons: {
activeHeader: "ui-icon-triangle-1-s", activeHeader: "ui-icon-triangle-1-s",

View File

@ -35,7 +35,7 @@ $( document ).mouseup( function() {
return $.widget("ui.mouse", { return $.widget("ui.mouse", {
version: "@VERSION", version: "@VERSION",
options: { options: {
cancel: "input,textarea,button,select,option", cancel: "input, textarea, button, select, option",
distance: 1, distance: 1,
delay: 0 delay: 0
}, },

View File

@ -481,7 +481,7 @@ return $.widget( "ui.tabs", {
// allow overriding how to find the list for rare usage scenarios (#7715) // allow overriding how to find the list for rare usage scenarios (#7715)
_getList: function() { _getList: function() {
return this.tablist || this.element.find( "ol,ul" ).eq( 0 ); return this.tablist || this.element.find( "ol, ul" ).eq( 0 );
}, },
_createPanel: function( id ) { _createPanel: function( id ) {