Last change
on this file since 532 was
483,
checked in by hendrikvanantwerpen, 11 years ago
|
Added Dojo 1.9.3 release.
|
File size:
806 bytes
|
Line | |
---|
1 | define([ |
---|
2 | "dojo/_base/declare", // declare |
---|
3 | "./HorizontalRule" |
---|
4 | ], function(declare, HorizontalRule){ |
---|
5 | |
---|
6 | // module: |
---|
7 | // dijit/form/VerticalRule |
---|
8 | |
---|
9 | return declare("dijit.form.VerticalRule", HorizontalRule, { |
---|
10 | // summary: |
---|
11 | // Hash marks for the `dijit/form/VerticalSlider` |
---|
12 | |
---|
13 | templateString: '<div class="dijitRuleContainer dijitRuleContainerV"></div>', |
---|
14 | _positionPrefix: '<div class="dijitRuleMark dijitRuleMarkV" style="top:', |
---|
15 | |
---|
16 | /*===== |
---|
17 | // container: String |
---|
18 | // This is either "leftDecoration" or "rightDecoration", |
---|
19 | // to indicate whether this rule goes to the left or to the right of the slider. |
---|
20 | // Note that on RTL system, "leftDecoration" would actually go to the right, and vice-versa. |
---|
21 | container: "", |
---|
22 | =====*/ |
---|
23 | |
---|
24 | // Overrides HorizontalRule._isHorizontal |
---|
25 | _isHorizontal: false |
---|
26 | |
---|
27 | }); |
---|
28 | }); |
---|
Note: See
TracBrowser
for help on using the repository browser.