Search and Top Navigation
#4704 closed bug (fixed)
Opened July 22, 2009 07:53PM UTC
Closed December 02, 2009 12:34AM UTC
Datepicker global variable isn't unique
Reported by: | obrie | Owned by: | |
---|---|---|---|
Priority: | critical | Milestone: | 1.8 |
Component: | ui.datepicker | Version: | 1.7.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
One of the nice things with jQuery is that it shouldn't conflict with anything else on the page, even another jQuery installation. In the Datepicker widget, a global variable is added (DP_jQuery) that will cause problems if there is more than one install of jQuery on the page.
While this may be an edge case, it affects my particular usage because we have a library which uses jQuery UI that gets distributed on many websites, any of which may have their own version of jQuery / jQuery UI installed. As a result, we need to make sure that our library (and so, jQuery and jQuery UI) introduce no conflicts with anything else on the page.
Since DP_jQuery would conflict with another installation of jQuery UI, it should be at least a unique variable such that the two can coexist. This patch uses Datepicker's uuid to generate a unique global variable which is then referenced through the rest of the plugin.
Ideally, there shouldn't be a need for a global variable at all. However, this preserves jQuery's non-conflicting nature.