Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
junedchhipa committed Nov 22, 2024
2 parents 33ba6c2 + ef34869 commit 91664d6
Show file tree
Hide file tree
Showing 6 changed files with 95 additions and 247 deletions.
64 changes: 32 additions & 32 deletions dist/locales/nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,43 +2,43 @@
"name": "nl",
"options": {
"months": [
"Januari",
"Februari",
"Maart",
"April",
"Mei",
"Juni",
"Juli",
"Augustus",
"September",
"Oktober",
"November",
"December"
"januari",
"februari",
"maart",
"april",
"mei",
"juni",
"juli",
"augustus",
"september",
"oktober",
"november",
"december"
],
"shortMonths": [
"Jan",
"Feb",
"Mrt",
"Apr",
"Mei",
"Jun",
"Jul",
"Aug",
"Sep",
"Okt",
"Nov",
"Dec"
"jan.",
"feb.",
"mrt.",
"apr.",
"mei.",
"jun.",
"jul.",
"aug.",
"sep.",
"okt.",
"nov.",
"dec."
],
"days": [
"Zondag",
"Maandag",
"Dinsdag",
"Woensdag",
"Donderdag",
"Vrijdag",
"Zaterdag"
"zondag",
"maandag",
"dinsdag",
"woensdag",
"donderdag",
"vrijdag",
"zaterdag"
],
"shortDays": ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za"],
"shortDays": ["zo.", "ma.", "di.", "wo.", "do.", "vr.", "za."],
"toolbar": {
"exportToSVG": "Download SVG",
"exportToPNG": "Download PNG",
Expand Down
167 changes: 7 additions & 160 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/modules/ZoomPanSelection.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export default class ZoomPanSelection extends Toolbar {
? e.changedTouches[0].clientY
: e.clientY

if (e.type === 'mousedown' && e.which === 1) {
if ((e.type === 'mousedown' && e.which === 1) || e.type === 'touchstart') {
let gridRectDim = me.gridRect.getBoundingClientRect()

me.startX = me.clientX - gridRectDim.left
Expand Down
3 changes: 2 additions & 1 deletion src/modules/tooltip/Labels.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,8 @@ export default class Labels {

if (typeof yLbTitleFormatter !== 'function') {
yLbTitleFormatter = function (label) {
return label
// refrence used from line: 966 in Options.js
return label ? label + ': ' : ''
}
}

Expand Down
Loading

0 comments on commit 91664d6

Please sign in to comment.