You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
435 B
13 lines
435 B
define([ |
|
"dojo/_base/declare", |
|
"dojox/form/_RangeSliderMixin", |
|
"dojo/text!./resources/VerticalRangeSlider.html", |
|
"dijit/form/VerticalSlider" |
|
], function(declare, RangeSliderMixin, template, baseSlider){ |
|
|
|
return declare("dojox.form.VerticalRangeSlider", [baseSlider, RangeSliderMixin], { |
|
// summary: |
|
// A form widget that allows one to select a range with two horizontally draggable images |
|
templateString: template |
|
}); |
|
});
|
|
|