source: Dev/branches/rest-dojo-ui/client/dijit/form/VerticalRule.js @ 256

Last change on this file since 256 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 937 bytes
Line 
1define([
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});
Note: See TracBrowser for help on using the repository browser.