Skip to content

Commit

Permalink
dist build
Browse files Browse the repository at this point in the history
  • Loading branch information
louisameline committed Jul 11, 2016
1 parent de73d5b commit 4e0196e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions dist/js/tooltipster.bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ var defaults = {
hasTransitions: transitionSupport(),
IE: false,
// don't set manually, it will be updated by a build task after the manifest
semVer: '4.0.5',
semVer: '4.0.6',
window: win
},
core = function() {
Expand Down Expand Up @@ -3173,10 +3173,10 @@ Ruler.prototype = {
result = { size: {
// bcr.width/height are not defined in IE8- but in this
// case, bcr.right/bottom will have the same value
// except in iOS 8+ where tooltipBcr.bottom is wrong after scrolling
// for reasons yet to be determined
// except in iOS 8+ where tooltipBcr.bottom/right are wrong
// after scrolling for reasons yet to be determined
height: tooltipBcr.height || tooltipBcr.bottom,
width: tooltipBcr.right
width: tooltipBcr.width || tooltipBcr.right
}};

if (this.constraints) {
Expand Down
2 changes: 1 addition & 1 deletion dist/js/tooltipster.bundle.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/js/tooltipster.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ var defaults = {
hasTransitions: transitionSupport(),
IE: false,
// don't set manually, it will be updated by a build task after the manifest
semVer: '4.0.5',
semVer: '4.0.6',
window: win
},
core = function() {
Expand Down Expand Up @@ -3173,10 +3173,10 @@ Ruler.prototype = {
result = { size: {
// bcr.width/height are not defined in IE8- but in this
// case, bcr.right/bottom will have the same value
// except in iOS 8+ where tooltipBcr.bottom is wrong after scrolling
// for reasons yet to be determined
// except in iOS 8+ where tooltipBcr.bottom/right are wrong
// after scrolling for reasons yet to be determined
height: tooltipBcr.height || tooltipBcr.bottom,
width: tooltipBcr.right
width: tooltipBcr.width || tooltipBcr.right
}};

if (this.constraints) {
Expand Down
2 changes: 1 addition & 1 deletion dist/js/tooltipster.core.min.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
Expand Up @@ -41,5 +41,5 @@
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"version": "4.0.5"
"version": "4.0.6"
}

0 comments on commit 4e0196e

Please sign in to comment.