Skip to content
This repository has been archived by the owner on Nov 9, 2024. It is now read-only.

Commit

Permalink
v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
atomiks committed Feb 13, 2018
1 parent e64c449 commit e4054b4
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion dist/tippy.all.js
Original file line number Diff line number Diff line change
Expand Up @@ -3670,7 +3670,7 @@ function _createPopperInstance() {
_addMutationObserver.call(this, {
target: popper,
callback: function callback() {
_this7.popperInstance.scheduleUpdate();
_this7.popperInstance.update();
},
options: {
childList: true,
Expand Down
2 changes: 1 addition & 1 deletion dist/tippy.all.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/tippy.js
Original file line number Diff line number Diff line change
Expand Up @@ -3668,7 +3668,7 @@ function _createPopperInstance() {
_addMutationObserver.call(this, {
target: popper,
callback: function callback() {
_this7.popperInstance.scheduleUpdate();
_this7.popperInstance.update();
},
options: {
childList: true,
Expand Down
2 changes: 1 addition & 1 deletion dist/tippy.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/tippy.standalone.js
Original file line number Diff line number Diff line change
Expand Up @@ -1241,7 +1241,7 @@ function _createPopperInstance() {
_addMutationObserver.call(this, {
target: popper,
callback: function callback() {
_this7.popperInstance.scheduleUpdate();
_this7.popperInstance.update();
},
options: {
childList: true,
Expand Down
2 changes: 1 addition & 1 deletion dist/tippy.standalone.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -193,15 +193,15 @@ <h2><a href="#getting-started">📦 <span>Getting started</span></a></h2>
<p>
Alternatively, you can install through npm:
</p>
<pre><code>npm install --save [email protected].0</code></pre>
<pre><code>npm install --save [email protected].1</code></pre>

<p>
Or use the <a target="_blank" href="https://unpkg.com/[email protected].0">unpkg.com CDN</a>:
Or use the <a target="_blank" href="https://unpkg.com/[email protected].1">unpkg.com CDN</a>:
</p>
<pre><code>https://unpkg.com/[email protected].0/dist/</code></pre>
<pre><code>https://unpkg.com/[email protected].1/dist/</code></pre>

<p>Simply include the <code>tippy.all.min.js</code> file in your document before your own scripts:</p>
<pre><code class="language-markup">&lt;script src="https://unpkg.com/[email protected].0/dist/tippy.all.min.js"&gt;&lt;/script&gt;</code></pre>
<pre><code class="language-markup">&lt;script src="https://unpkg.com/[email protected].1/dist/tippy.all.min.js"&gt;&lt;/script&gt;</code></pre>

<p>This is the bundled version which includes Popper.js and automatically injects Tippy's CSS stylesheet
into the document head.</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/tippy/tippy.js

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
@@ -1,6 +1,6 @@
{
"name": "tippy.js",
"version": "2.2.0",
"version": "2.2.1",
"description": "Vanilla JS Tooltip Library",
"main": "dist/tippy.all.js",
"repository": {
Expand Down

0 comments on commit e4054b4

Please sign in to comment.