Skip to content

Commit

Permalink
Bump version to 1.0.0 (#86)
Browse files Browse the repository at this point in the history
* Fix: fixed library endpoint

* Bumps: 0.0.6

* Docs: improved documentation

* Bumps: 0.0.9

* Feat: added webpack to build module

* Fix: fixed webpack config

* Docs: updated documentation to describe new usage

* Chore: fixed js lint

* Chore: fixed export of default function

* Merge branch 'master' of https://github.com/Aristotle-Metadata-Enterprises/aristotle-tooltip

# Conflicts:
#	src/tooltip.js
#	src/utils.js

* Fix: fixed webpack config

* fix: fixed up tooltip css

* Fixed <hr> margins

* Chore: removed unneeded webpack configuration

* Chore: fixed github deploy to npm action

* Bumps: 0.0.11

* Chore: cleaned up documentation HTML

* Chore: added license generation to webpack

* Fix: Fixed tooltip onHidden behaviour

* Fix: Fixed tooltip onHidden behaviour and see_more behavior

Signed-off-by: Dylan Silke <[email protected]>

* Fix: added promise polyfill to documentation

Signed-off-by: Dylan Silke <[email protected]>

* Chore: removes baseURL

Signed-off-by: Dylan Silke <[email protected]>

* Bumps: 1.0.0

Signed-off-by: Dylan Silke <[email protected]>

* Fix: adds missing semicolon

Signed-off-by: Dylan Silke <[email protected]>

* Fix: adds missing semicolon

Signed-off-by: Dylan Silke <[email protected]>

* Chore: fixes incorrect tooltip access in demo site

Signed-off-by: Dylan Silke <[email protected]>
  • Loading branch information
s-i-l-k-e authored Feb 24, 2020
1 parent 21e87a2 commit b2d6891
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/_layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ <h2 class="project-tagline">
<span class="site-footer-credits">This page was generated by <a href="https://pages.github.com">GitHub Pages</a>.</span>
</footer>
</main>
<script src="https://cdn.jsdelivr.net/npm/@aristotle-metadata-enterprises/aristotle_tooltip@latest/dist/tooltip.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@aristotle-metadata-enterprises/aristotle_tooltip@latest/dist/aristotletooltip.min.js"></script>
<script src="{{ 'assets/js/script.js' }}"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aristotle-metadata-enterprises/aristotle_tooltip",
"version": "0.0.11",
"version": "1.0.0",
"description": "Aristotle Tooltip: add Aristotle functionality to any website!",
"main": "dist/aristotletooltip.min.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/tooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function createTippyElements(options) {
if (instance._hasSucceeded && instance._see_more) {
// Reset back to minified when you leave
instance._see_more = false;
setHTMLContent(instance)
setHTMLContent(instance);
}

if (instance._isFetching || instance._hasSucceeded) {
Expand Down

0 comments on commit b2d6891

Please sign in to comment.