r917 - trunk/ui
r917 - trunk/ui
Author: rdworth
Date: Tue Nov 11 18:57:04 2008
New Revision: 917
Modified:
trunk/ui/ui.slider.js
Log:
Fixed failing .slider("destroy") on empty element. "$(this).data("mouse")
is undefined"
Modified: trunk/ui/ui.slider.js
==============================================================================
--- trunk/ui/ui.slider.js (original)
+++ trunk/ui/ui.slider.js Tue Nov 11 18:57:04 2008
@@ -46,7 +46,8 @@
this.handle
.unwrap("a");
this.handle.each(function() {
- $(this).data("mouse")._mouseDestroy();
+ var mouse = $(this).data("mouse");
+ mouse && mouse._mouseDestroy();
});
}