VerticalRule.js.uncompressed.js 833 B

12345678910111213141516171819202122232425262728
  1. define("dijit/form/VerticalRule", [
  2. "dojo/_base/declare", // declare
  3. "./HorizontalRule"
  4. ], function(declare, HorizontalRule){
  5. // module:
  6. // dijit/form/VerticalRule
  7. return declare("dijit.form.VerticalRule", HorizontalRule, {
  8. // summary:
  9. // Hash marks for the `dijit/form/VerticalSlider`
  10. templateString: '<div class="dijitRuleContainer dijitRuleContainerV"></div>',
  11. _positionPrefix: '<div class="dijitRuleMark dijitRuleMarkV" style="top:',
  12. /*=====
  13. // container: String
  14. // This is either "leftDecoration" or "rightDecoration",
  15. // to indicate whether this rule goes to the left or to the right of the slider.
  16. // Note that on RTL system, "leftDecoration" would actually go to the right, and vice-versa.
  17. container: "",
  18. =====*/
  19. // Overrides HorizontalRule._isHorizontal
  20. _isHorizontal: false
  21. });
  22. });