Changeset 7798

Show
Ignore:
Timestamp:
07/23/09 17:39:58 (12 months ago)
Author:
josowski
Message:

These changes resolve an issue with Internet Explorer 6 and 8 not displaying the chart.

The changes here in global_head.ftl force IE8 to run in a IE7 compatibility mode due to a specific problem with dojo. At a later release of Dojo, we should be able to remove this tag.

References #1348

Location:
head/ambra/libs/js/src/main/scripts
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • head/ambra/libs/js/src/main/scripts/ambra/general.js

    r7785 r7798  
    233233Date.formatDate = function(timestamp) { 
    234234  var dt = new Date(timestamp); 
    235   return Date.getMonthShortName(dt.getMonth()) + " " + dt.getDate() + ", " + " " + (dt.getYear() + 1900); 
    236 } 
     235  return Date.getMonthShortName(dt.getMonth()) + " " + dt.getDate() + ", " + " " + dt.getFullYear(); 
     236} 
  • head/ambra/libs/js/src/main/scripts/ambra.profile.js

    r7782 r7798  
    1111        "dojox.gfx.fx", 
    1212        "dojox.gfx.svg", 
     13        "dojox.gfx.vml", 
    1314        "dojox.charting.Chart2D", 
    1415        "dojox.charting.plot2d.Lines", 
     
    1617        "dojox.charting.action2d.Tooltip", 
    1718        "dojox.charting.themes.Grasshopper", 
    18         "dojox.charting.plot2d.Grid",           
     19        "dojox.charting.plot2d.Grid", 
    1920        "dijit.layout.ContentPane", 
    2021        "dijit.Dialog",