diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-11-09 12:51:26 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-11-09 12:51:26 -0500 |
commit | d44557f50ad7b3c512bdd8bc2ba3eed5672b3b12 (patch) | |
tree | f0c387d33a759a7d83dae016981a3fa4b0faa178 /ui | |
parent | 84cd214486769a3527b3ab420219c8f9c78f9879 (diff) | |
download | jquery-ui-d44557f50ad7b3c512bdd8bc2ba3eed5672b3b12.tar.gz jquery-ui-d44557f50ad7b3c512bdd8bc2ba3eed5672b3b12.zip |
Widget: Removed dual storage of widget instances. Fixes #8801 - Widget: Remove data fallbacks for widget names.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/jquery.ui.widget.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ui/jquery.ui.widget.js b/ui/jquery.ui.widget.js index 83696e940..65ac155ae 100644 --- a/ui/jquery.ui.widget.js +++ b/ui/jquery.ui.widget.js @@ -231,9 +231,6 @@ $.Widget.prototype = { this.focusable = $(); if ( element !== this ) { - // 1.9 BC for #7810 - // TODO remove dual storage - $.data( element, this.widgetName, this ); $.data( element, this.widgetFullName, this ); this._on( this.element, { remove: function( event ) { |