SteelSeries - 1.6.x Discussion

Edit the HTML page and remove the following lines:

          <input id="rad_dew2" type="radio" name="rad_dew" value="app" checked onclick="doDew(this);">
          <label id="lab_dew2" for="rad_dew2">Apparent</label>
and
          <input id="rad_dew5" type="radio" name="rad_dew" value="hum" onclick="doDew(this);">
          <label id="lab_dew5" for="rad_dew5">Humidex</label>

Then change:

          <input id="rad_dew1" type="radio" name="rad_dew" value="dew" onclick="doDew(this);">
to
          <input id="rad_dew1" type="radio" name="rad_dew" value="dew" checked onclick="doDew(this);">

Edit gauges.js and around line 181 change:

    g_dew.selected = 'app';
to
    g_dew.selected = 'dew';

Done.

Mark,
Thanks a lot for yr expeditious response. All working fine. In order to change the gauge title to Dew Point, I take it that also line g_dew.title = LANG.apptemp_title; had to be changed to g_dew.title = LANG.dew_title;
Again, many thanks.
Dick

Ah, yes missed that one! I did it from memory of the code and didn’t actually test it out :?

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.