aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2013-03-15 06:45:38 -0400
committerScott González <scott.gonzalez@gmail.com>2013-03-15 06:45:38 -0400
commit43442c319643ee9fb6f54737d921ba8b03f3ae6b (patch)
tree6e5034120c39d3807fcb0d565807d5f88bd53400 /ui
parent0cc40d799ffdf7aa978f910b890915ee6ad7a2b8 (diff)
downloadjquery-ui-43442c319643ee9fb6f54737d921ba8b03f3ae6b.tar.gz
jquery-ui-43442c319643ee9fb6f54737d921ba8b03f3ae6b.zip
Accordion: Remove deprecated content property in create event. Fixes #8999 - Accordion: Remove content property from create event.
Diffstat (limited to 'ui')
-rw-r--r--ui/jquery.ui.accordion.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/jquery.ui.accordion.js b/ui/jquery.ui.accordion.js
index da0d5751c..c210a29a9 100644
--- a/ui/jquery.ui.accordion.js
+++ b/ui/jquery.ui.accordion.js
@@ -65,8 +65,7 @@ $.widget( "ui.accordion", {
_getCreateEventData: function() {
return {
header: this.active,
- panel: !this.active.length ? $() : this.active.next(),
- content: !this.active.length ? $() : this.active.next()
+ panel: !this.active.length ? $() : this.active.next()
};
},