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