Skip to content

Commit

Permalink
v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zackbloom committed Apr 19, 2015
1 parent c8b6cc0 commit e7e2d42
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tether",
"version": "0.6.5",
"version": "0.7.0",
"main": "tether.js",
"homepage": "https://github.hubspot.com/tether",
"authors": [
Expand Down
6 changes: 3 additions & 3 deletions js/tether.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tether",
"version": "0.6.5",
"version": "0.7.0",
"description": "A client-side library to make absolutely positioned elements attach to elements in the page efficiently.",
"main": "tether.js",
"authors": [
Expand Down
8 changes: 4 additions & 4 deletions tether.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! tether 0.6.5 */
/*! tether 0.7.0 */


(function(root, factory) {
Expand Down Expand Up @@ -846,10 +846,10 @@
manualTargetOffset: manualTargetOffset,
scrollbarSize: scrollbarSize
});
if ((ret == null) || typeof ret !== 'object') {
continue;
} else if (ret === false) {
if (ret === false) {
return false;
} else if ((ret == null) || typeof ret !== 'object') {
continue;
} else {
top = ret.top, left = ret.left;
}
Expand Down
Loading

0 comments on commit e7e2d42

Please sign in to comment.