~jstys-z/helioviewer.org/client5

« back to all changes in this revision

Viewing changes to lib/helioviewer/Calendar.js

  • Committer: V. Keith Hughitt
  • Date: 2009-04-01 21:08:05 UTC
  • Revision ID: hughitt1@kore-20090401210805-372f7dgih07vxk42
nightly build 04-01-2009

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
        
24
24
        var self = this;
25
25
        this.cal = jQuery("#" + dateFieldId).datepicker({
26
 
            buttonImage: 'images/calendar_small.png',
 
26
            buttonImage: 'images/blackGlass/calendar_small.png',
27
27
            buttonImageOnly: true,
28
28
                        buttonText: "Select a date.",
29
29
            dateFormat: 'yy/mm/dd',
52
52
        // Mouse-over effect
53
53
        jQuery('.ui-datepicker-trigger').hover(
54
54
            function() {
55
 
                jQuery(this).attr("src", "images/calendar_small-hover.png");
 
55
                jQuery(this).attr("src", "images/blackGlass/calendar_small-hover.png");
56
56
            },
57
57
            function () {
58
 
                jQuery(this).attr("src", "images/calendar_small.png");                
 
58
                jQuery(this).attr("src", "images/blackGlass/calendar_small.png");                
59
59
            }
60
60
        );
61
61
    },