~jstys-z/helioviewer.org/client5

« back to all changes in this revision

Viewing changes to src/TimeControls.js

  • Committer: Keith Hughitt
  • Date: 2010-02-17 22:00:59 UTC
  • mfrom: (402.1.68 hv)
  • Revision ID: keith.hughitt@nasa.gov-20100217220059-wmdq7kgokj4seryx
Merged with Keith's branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
145
145
        
146
146
        // Initialize datepicker
147
147
        this.cal = this._dateInput.datepicker({
148
 
            buttonImage    : 'images/blackGlass/calendar_small.png',
 
148
            buttonImage    : 'resources/images/blackGlass/calendar_small.png',
149
149
            buttonImageOnly: true,
150
150
            buttonText     : "Select a date.",
151
151
            changeYear     : true,
174
174
        // Mouse-over effect
175
175
        btn.hover(
176
176
            function () {
177
 
                btn.attr("src", "images/blackGlass/calendar_small-hover.png");
 
177
                btn.attr("src", "resources/images/blackGlass/calendar_small-hover.png");
178
178
            },
179
179
            function () {
180
 
                btn.attr("src", "images/blackGlass/calendar_small.png");                
 
180
                btn.attr("src", "resources/images/blackGlass/calendar_small.png");                
181
181
            }
182
182
        );  
183
183
    },