OpenLayers OpenLayers

Changeset 7612

Show
Ignore:
Timestamp:
07/30/08 14:40:23 (4 months ago)
Author:
euzuro
Message:

adding types to properties from the mousing improvements patch. No functional change, only documentation. (See #1509)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/openlayers/lib/OpenLayers/Control/DragPan.js

    r7608 r7612  
    3131    /** 
    3232     * Property: interval 
    33      * The number of milliseconds that should ellapse before 
    34      * panning the map again. Set this to increase dragging performance. 
    35      * Defaults to 25 milliseconds. 
     33     * {Integer} The number of milliseconds that should ellapse before 
     34     *     panning the map again. Set this to increase dragging performance. 
     35     *     Defaults to 25 milliseconds. 
    3636     */ 
    3737    interval: 25,  
  • trunk/openlayers/lib/OpenLayers/Control/Navigation.js

    r7608 r7612  
    3333    /** 
    3434     * APIProprety: dragPanOptions 
    35      * Options passed to the DragPan control. 
     35     * {Object} Options passed to the DragPan control. 
    3636     */ 
    3737    dragPanOptions: null, 
  • trunk/openlayers/lib/OpenLayers/Handler/Drag.js

    r7608 r7612  
    7070    /** 
    7171     * Property: interval 
    72      * In order to increase performance, an interval (in milliseconds) 
    73      * can be set to reduce the number of drag events called. If set,  
    74      * a new drag event will not be set until the interval has passed.  
    75      * Defaults to 0, meaning no interval.  
     72     * {Integer} In order to increase performance, an interval (in  
     73     *     milliseconds) can be set to reduce the number of drag events  
     74     *     called. If set, a new drag event will not be set until the  
     75     *     interval has passed.  
     76     *     Defaults to 0, meaning no interval.  
    7677     */ 
    7778    interval: 0, 
     
    7980    /** 
    8081     * Property: timeoutId 
    81      * The id of the timeout used for the mousedown interval. 
    82      * This is "private", and should be left alone. 
     82     * {String} The id of the timeout used for the mousedown interval. 
     83     *     This is "private", and should be left alone. 
    8384     */ 
    8485    timeoutId: null,