aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2015-03-26 07:41:37 -0400
committerScott González <scott.gonzalez@gmail.com>2015-03-26 07:47:17 -0400
commitc42a07a2e388d7aeec4af89d0be63f55b593f6aa (patch)
treefc166be7fbe03d4d7337a6e2e22c1e78133c8755 /ui
parentdc6703756d388b1f49be0637473a8d55b5ce9270 (diff)
downloadjquery-ui-c42a07a2e388d7aeec4af89d0be63f55b593f6aa.tar.gz
jquery-ui-c42a07a2e388d7aeec4af89d0be63f55b593f6aa.zip
All: Standard spacing inside selector strings
Closes gh-1521
Diffstat (limited to 'ui')
-rw-r--r--ui/accordion.js2
-rw-r--r--ui/mouse.js2
-rw-r--r--ui/tabs.js2
3 files changed, 3 insertions, 3 deletions
diff --git a/ui/accordion.js b/ui/accordion.js
index 67021784d..646352715 100644
--- a/ui/accordion.js
+++ b/ui/accordion.js
@@ -44,7 +44,7 @@ return $.widget( "ui.accordion", {
},
collapsible: false,
event: "click",
- header: "> li > :first-child,> :not(li):even",
+ header: "> li > :first-child, > :not(li):even",
heightStyle: "auto",
icons: {
activeHeader: "ui-icon-triangle-1-s",
diff --git a/ui/mouse.js b/ui/mouse.js
index 901a1ca09..ed898f2a9 100644
--- a/ui/mouse.js
+++ b/ui/mouse.js
@@ -35,7 +35,7 @@ $( document ).mouseup( function() {
return $.widget("ui.mouse", {
version: "@VERSION",
options: {
- cancel: "input,textarea,button,select,option",
+ cancel: "input, textarea, button, select, option",
distance: 1,
delay: 0
},
diff --git a/ui/tabs.js b/ui/tabs.js
index 59f958196..40668f837 100644
--- a/ui/tabs.js
+++ b/ui/tabs.js
@@ -481,7 +481,7 @@ return $.widget( "ui.tabs", {
// allow overriding how to find the list for rare usage scenarios (#7715)
_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 ) {