Skip to content

Commit b32db2d

Browse files
committed
Merge branch 'hotfix/1.0.1' 🚢
2 parents 3d4b499 + 7ae2336 commit b32db2d

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
= 1.0.1
2+
* Fixed issue with accidental link following
3+
14
= 1.0.0 =
25
* Initial Release

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bubblechart",
33
"description": "BubbleChart is a JavaScript module for the comparative visualization of two dimensional data in a bubble chart.",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"license": "Apache 2.0",
66
"homepage": "https://github.com/jondavidjohn/bubblechart",
77
"bugs": "https://github.com/jondavidjohn/bubblechart/issues",

src/classes/BubbleChart/Pointer.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class BubbleChart.Pointer
2626
self.current = null
2727

2828
@e_release = (e) ->
29-
if self.bubble?
29+
if self.grabbingBubble()
3030
e.preventDefault()
3131
self.bubble.grabbed = false
3232
self.diff = null

0 commit comments

Comments
 (0)