mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-30 00:50:38 +08:00
11 lines
254 B
JavaScript
11 lines
254 B
JavaScript
|
|
(function ($) {
|
||
|
|
'use strict';
|
||
|
|
$.plot.uiConstants = {
|
||
|
|
SNAPPING_CONSTANT: 20,
|
||
|
|
PANHINT_LENGTH_CONSTANT: 10,
|
||
|
|
MINOR_TICKS_COUNT_CONSTANT: 4,
|
||
|
|
TICK_LENGTH_CONSTANT: 10,
|
||
|
|
ZOOM_DISTANCE_MARGIN: 25
|
||
|
|
};
|
||
|
|
})(jQuery);
|