diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-10-25 06:52:29 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-10-25 06:52:29 -0400 |
commit | 7678b90ae843c2db48b29ed0e933764ef1d4214e (patch) | |
tree | 44fe04154f52cbd0d708dcf0761b312425c0df04 /ui | |
parent | cb030cbc1b9098a5eee0776328bea95d964b17ac (diff) | |
download | jquery-ui-7678b90ae843c2db48b29ed0e933764ef1d4214e.tar.gz jquery-ui-7678b90ae843c2db48b29ed0e933764ef1d4214e.zip |
Widget: Removed use of metadata. Fixes #7192 - Widget: Remove use of metadata.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/jquery.ui.widget.js | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/ui/jquery.ui.widget.js b/ui/jquery.ui.widget.js index 5c945c2f2..6e8150be7 100644 --- a/ui/jquery.ui.widget.js +++ b/ui/jquery.ui.widget.js @@ -507,11 +507,4 @@ $.each( { show: "fadeIn", hide: "fadeOut" }, function( method, defaultEffect ) { }; }); -// DEPRECATED -if ( $.uiBackCompat !== false ) { - $.Widget.prototype._getCreateOptions = function() { - return $.metadata && $.metadata.get( this.element[0] )[ this.widgetName ]; - }; -} - })( jQuery ); |