Skip to content

Commit e7e2d42

Browse files
committed
v0.7.0
1 parent c8b6cc0 commit e7e2d42

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tether",
3-
"version": "0.6.5",
3+
"version": "0.7.0",
44
"main": "tether.js",
55
"homepage": "https://github.hubspot.com/tether",
66
"authors": [

js/tether.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tether",
3-
"version": "0.6.5",
3+
"version": "0.7.0",
44
"description": "A client-side library to make absolutely positioned elements attach to elements in the page efficiently.",
55
"main": "tether.js",
66
"authors": [

tether.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! tether 0.6.5 */
1+
/*! tether 0.7.0 */
22

33

44
(function(root, factory) {
@@ -846,10 +846,10 @@
846846
manualTargetOffset: manualTargetOffset,
847847
scrollbarSize: scrollbarSize
848848
});
849-
if ((ret == null) || typeof ret !== 'object') {
850-
continue;
851-
} else if (ret === false) {
849+
if (ret === false) {
852850
return false;
851+
} else if ((ret == null) || typeof ret !== 'object') {
852+
continue;
853853
} else {
854854
top = ret.top, left = ret.left;
855855
}

0 commit comments

Comments
 (0)