jQuery: The Write Less, Do More JavaScript Library

Ticket #2022 (closed bug: fixed)

Opened 9 months ago

Last modified 8 months ago

Bug in Slider due to extra comma

Reported by: offwhite Assigned to: anonymous
Type: bug Priority: major
Milestone: 1.2.2 Component: ui
Version: 1.2.1 Keywords:
Cc: Needs: Review

Description

IE7 raises an error on line 32 due to an extra comma. It is strange. I did not make any other changes and it was working for a few days and then it started to raise this error. I simply removed the trailing comma in ui.slider.js.

slider.slider({

maxValue: cur.attr("max"), minValue: cur.attr("min"), startValue: this.getAttribute("value"), stepping: cur.attr("step"), change: function(e, ui) { cur[0].value = ui.value; cur[0].setAttribute("value", ui.value); }

});

Attachments

Change History

Changed 9 months ago by davidserduke

  • owner deleted
  • component changed from core to ui

Changed 8 months ago by rworth

  • status changed from new to closed
  • resolution set to fixed

Fixed in [3363]

Note: See TracTickets for help on using tickets.