Skip to content

Commit

Permalink
bumped to v0.7.9
Browse files Browse the repository at this point in the history
  • Loading branch information
bohnacker committed Nov 25, 2021
1 parent 8633109 commit ca23a1a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,10 @@
onMount(() => {
$$invalidate(48, htmlNode = document.querySelector("html"));
$$invalidate(49, htmlNodeOriginalCursor = htmlNode.style.cursor);

return () => {
$$invalidate(48, htmlNode.style.cursor = htmlNodeOriginalCursor, htmlNode);
};
});

// update all values (preciseValue, visibleValue)
Expand Down
4 changes: 4 additions & 0 deletions dist/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -609,6 +609,10 @@ function instance($$self, $$props, $$invalidate) {
onMount(() => {
$$invalidate(48, htmlNode = document.querySelector("html"));
$$invalidate(49, htmlNodeOriginalCursor = htmlNode.style.cursor);

return () => {
$$invalidate(48, htmlNode.style.cursor = htmlNodeOriginalCursor, htmlNode);
};
});

// update all values (preciseValue, visibleValue)
Expand Down
2 changes: 1 addition & 1 deletion example/public/build/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion example/public/build/bundle.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"src",
"dist"
],
"version": "0.7.8",
"version": "0.7.9",
"repository": {
"type": "git",
"url": "git+https://github.com/bohnacker/svelte-number-spinner.git"
Expand Down

0 comments on commit ca23a1a

Please sign in to comment.