Closed
Description
input![
attrs![
At::Value => "400",
At::Type => "range",
At::Min => "100",
At::Max => "800",
At::Step => "50",
]
]
while it should look like this:
To get a proper behavior value
need to be placed after step
:
input![
attrs![
At::Type => "range",
At::Min => "100",
At::Max => "800",
At::Step => "50",
At::Value => "400",
]
]
while it should work independent of attributes order.