]> source.dussan.org Git - jquery-ui.git/commitdiff
Datepicker: Remove unnecessary global variable now that we don't use inline event...
authorScott González <scott.gonzalez@gmail.com>
Wed, 3 Apr 2013 20:12:50 +0000 (16:12 -0400)
committerScott González <scott.gonzalez@gmail.com>
Wed, 3 Apr 2013 20:12:50 +0000 (16:12 -0400)
ui/jquery.ui.datepicker.js

index 5892e2ddc54951ad872188a477f6e4651aa02e36..990c181a6f2a3e7ac0bb13f69ae1522398378291 100644 (file)
@@ -16,7 +16,6 @@
 $.extend($.ui, { datepicker: { version: "@VERSION" } });
 
 var PROP_NAME = "datepicker",
-       dpuuid = new Date().getTime(),
        instActive;
 
 function getZindex( elem ) {
@@ -1580,27 +1579,27 @@ $.extend(Datepicker.prototype, {
                inst.dpDiv.find("[data-handler]").map(function () {
                        var handler = {
                                prev: function () {
-                                       window["DP_jQuery_" + dpuuid].datepicker._adjustDate(id, -stepMonths, "M");
+                                       $.datepicker._adjustDate(id, -stepMonths, "M");
                                },
                                next: function () {
-                                       window["DP_jQuery_" + dpuuid].datepicker._adjustDate(id, +stepMonths, "M");
+                                       $.datepicker._adjustDate(id, +stepMonths, "M");
                                },
                                hide: function () {
-                                       window["DP_jQuery_" + dpuuid].datepicker._hideDatepicker();
+                                       $.datepicker._hideDatepicker();
                                },
                                today: function () {
-                                       window["DP_jQuery_" + dpuuid].datepicker._gotoToday(id);
+                                       $.datepicker._gotoToday(id);
                                },
                                selectDay: function () {
-                                       window["DP_jQuery_" + dpuuid].datepicker._selectDay(id, +this.getAttribute("data-month"), +this.getAttribute("data-year"), this);
+                                       $.datepicker._selectDay(id, +this.getAttribute("data-month"), +this.getAttribute("data-year"), this);
                                        return false;
                                },
                                selectMonth: function () {
-                                       window["DP_jQuery_" + dpuuid].datepicker._selectMonthYear(id, this, "M");
+                                       $.datepicker._selectMonthYear(id, this, "M");
                                        return false;
                                },
                                selectYear: function () {
-                                       window["DP_jQuery_" + dpuuid].datepicker._selectMonthYear(id, this, "Y");
+                                       $.datepicker._selectMonthYear(id, this, "Y");
                                        return false;
                                }
                        };
@@ -2065,8 +2064,4 @@ $.datepicker.initialized = false;
 $.datepicker.uuid = new Date().getTime();
 $.datepicker.version = "@VERSION";
 
-// Workaround for #4055
-// Add another global to avoid noConflict issues with inline event handlers
-window["DP_jQuery_" + dpuuid] = $;
-
 })(jQuery);