From 2321ae06cbe44b86d14c82ebd452d06e3922dca9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jo=CC=88rn=20Zaefferer?= Date: Thu, 1 Mar 2012 15:13:52 +0100 Subject: [PATCH] Remove both widgetName and widgetFullName data --- ui/jquery.ui.widget.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/jquery.ui.widget.js b/ui/jquery.ui.widget.js index 17416ff9f..40abd67de 100644 --- a/ui/jquery.ui.widget.js +++ b/ui/jquery.ui.widget.js @@ -248,6 +248,9 @@ $.Widget.prototype = { // all event bindings should go through this._bind() this.element .unbind( "." + this.widgetName ) + // 1.9 BC for #7810 + // TODO remove dual storage + .removeData( this.widgetName ) .removeData( this.widgetFullName ); this.widget() .unbind( "." + this.widgetName ) -- 2.39.5