Skip to content

Commit b649577

Browse files
committedOct 10, 2021
reformatted and updated documentation
1 parent 2264bd0 commit b649577

29 files changed

+735
-411
lines changed
 

‎docs/CNAME

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
docs.geoblaze.io
1+
geoblaze.io

‎docs/assets/anchor.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -262,8 +262,8 @@
262262
*/
263263
this.hasAnchorJSLink = function(el) {
264264
var hasLeftAnchor =
265-
el.firstChild &&
266-
(' ' + el.firstChild.className + ' ').indexOf(' anchorjs-link ') > -1,
265+
el.firstChild &&
266+
(' ' + el.firstChild.className + ' ').indexOf(' anchorjs-link ') > -1,
267267
hasRightAnchor =
268268
el.lastChild &&
269269
(' ' + el.lastChild.className + ' ').indexOf(' anchorjs-link ') > -1;

‎docs/assets/split.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -219,8 +219,8 @@
219219
var b = elements[this.b];
220220
var percentage = a.size + b.size;
221221

222-
a.size = offset / this.size * percentage;
223-
b.size = percentage - offset / this.size * percentage;
222+
a.size = (offset / this.size) * percentage;
223+
b.size = percentage - (offset / this.size) * percentage;
224224

225225
setElementSize(a.element, a.size, this.aGutterSize);
226226
setElementSize(b.element, b.size, this.bGutterSize);

0 commit comments

Comments
 (0)
Please sign in to comment.