googlearchive / paper-slider

A slider à la Material Design
16 stars 18 forks source link

immediateValue documentation attached to maxMarkers property #44

Open oliverdm opened 9 years ago

oliverdm commented 9 years ago

Documentation for immediateValue is attached to maxMarkers property and immediateValue is not defined (paper-slider.html, f56fabfe77a26fb8008cbe5f2f720d85c2b60402, lines 184-192):

/**
 * The immediate value of the slider.  This value is updated while the user
 * is dragging the slider.
 *
 * @attribute immediateValue
 * @type number
 * @default 0
 */
maxMarkers: 100

According to the above documentation immediateValue should default to zero and maxMarkers is not public:

/**
 * The immediate value of the slider.  This value is updated while the user
 * is dragging the slider.
 *
 * @attribute immediateValue
 * @type number
 * @default 0
 */
immediateValue: 0,

maxMarkers: 100