r3545 committed - Fixed some references to old style defaults.

r3545 committed - Fixed some references to old style defaults.

Revision: 3545
Author: scott.gonzalez
Date: Mon Dec 28 07:58:02 2009
Log: Fixed some references to old style defaults.
http://code.google.com/p/jquery-ui/source/detail?r=3545
Modified:
/branches/dev/demos/dialog/animated.html
/branches/dev/demos/dialog/default.html
/branches/dev/demos/slider/multiple-vertical.html
/branches/dev/tests/visual/tooltip/callout.html
=======================================
--- /branches/dev/demos/dialog/animated.html    Tue Dec 22 19:33:42 2009
+++ /branches/dev/demos/dialog/animated.html    Mon Dec 28 07:58:02 2009
@@ -17,7 +17,7 @@
    <script type="text/javascript"
src="../../ui/jquery.effects.explode.js"></script>
    <link type="text/css" href="../demos.css" rel="stylesheet" />
    <script type="text/javascript">
-    $.ui.dialog.defaults.stackfix = true;
+    $.ui.dialog.prototype.options.stackfix = true;
    // increase the default animation speed to exaggerate the effect
    $.fx.speeds._default = 1000;
    $(function() {
=======================================
--- /branches/dev/demos/dialog/default.html    Tue Dec 22 19:33:42 2009
+++ /branches/dev/demos/dialog/default.html    Mon Dec 28 07:58:02 2009
@@ -14,7 +14,7 @@
    <script type="text/javascript"
src="../../ui/jquery.ui.dialog.js"></script>
    <link type="text/css" href="../demos.css" rel="stylesheet" />
    <script type="text/javascript">
-    $.ui.dialog.defaults.stackfix = true;
+    $.ui.dialog.prototype.options.stackfix = true;
    $(function() {
        $("#dialog").dialog();
    });
=======================================
--- /branches/dev/demos/slider/multiple-vertical.html    Wed Dec 16 17:36:20
2009
+++ /branches/dev/demos/slider/multiple-vertical.html    Mon Dec 28 07:58:02
2009
@@ -17,7 +17,7 @@
    <script type="text/javascript">
    $(function() {
        // change defaults for range, animate and orientation
-        $.extend($.ui.slider.defaults, {
+        $.extend($.ui.slider.prototype.options, {
            range: "min",
            animate: true,
            orientation: "vertical"
=======================================
--- /branches/dev/tests/visual/tooltip/callout.html    Wed Dec 16 18:23:07 2009
+++ /branches/dev/tests/visual/tooltip/callout.html    Mon Dec 28 07:58:02 2009
@@ -56,7 +56,7 @@
    });
    $(function() {
-        $.ui.tooltip.defaults.show = function(event, ui) {
+        $.ui.tooltip.prototype.options.show = function(event, ui) {
            $(this).tooltip("widget").callout("pointAt", ui.target);
        }
--