]> git.wh0rd.org - tt-rss.git/blame - lib/dijit/form/VerticalRule.js.uncompressed.js
modify dojo rebuild script to remove uncompressed files
[tt-rss.git] / lib / dijit / form / VerticalRule.js.uncompressed.js
CommitLineData
f0cfe83e
AD
1define("dijit/form/VerticalRule", [
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});