Skip to content

Commit

Permalink
dist build
Browse files Browse the repository at this point in the history
  • Loading branch information
louisameline committed Mar 21, 2017
1 parent 10d6d40 commit 99ed4fb
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 15 deletions.
11 changes: 5 additions & 6 deletions dist/js/tooltipster.bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ var defaults = {
hasTransitions: transitionSupport(),
IE: false,
// don't set manually, it will be updated by a build task after the manifest
semVer: '4.2.2',
semVer: '4.2.3',
window: win
},
core = function() {
Expand Down Expand Up @@ -3217,9 +3217,10 @@ Ruler.prototype = {
// 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/right are wrong
// after scrolling for reasons yet to be determined
height: tooltipBcr.height || tooltipBcr.bottom,
width: tooltipBcr.width || tooltipBcr.right
// after scrolling for reasons yet to be determined.
// tooltipBcr.top/left might not be 0, see issue #514
height: tooltipBcr.height || (tooltipBcr.bottom - tooltipBcr.top),
width: tooltipBcr.width || (tooltipBcr.right - tooltipBcr.left)
}};

if (this.constraints) {
Expand Down Expand Up @@ -4047,7 +4048,6 @@ $.tooltipster._plugin({

if (self.__options.functionPosition) {


var result = self.__options.functionPosition.call(self, self.__instance, helper, finalResultClone);

if (result) finalResult = result;
Expand All @@ -4057,7 +4057,6 @@ $.tooltipster._plugin({
// use for it during the position event, now it's over)
ruler.destroy();


// compute the position of the target relatively to the tooltip root
// element so we can place the arrow and make the needed adjustments
var arrowCoord,
Expand Down
2 changes: 1 addition & 1 deletion dist/js/tooltipster.bundle.min.js

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions dist/js/tooltipster.main.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ var defaults = {
hasTransitions: transitionSupport(),
IE: false,
// don't set manually, it will be updated by a build task after the manifest
semVer: '4.2.2',
semVer: '4.2.3',
window: win
},
core = function() {
Expand Down Expand Up @@ -3217,9 +3217,10 @@ Ruler.prototype = {
// 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/right are wrong
// after scrolling for reasons yet to be determined
height: tooltipBcr.height || tooltipBcr.bottom,
width: tooltipBcr.width || tooltipBcr.right
// after scrolling for reasons yet to be determined.
// tooltipBcr.top/left might not be 0, see issue #514
height: tooltipBcr.height || (tooltipBcr.bottom - tooltipBcr.top),
width: tooltipBcr.width || (tooltipBcr.right - tooltipBcr.left)
}};

if (this.constraints) {
Expand Down
2 changes: 1 addition & 1 deletion dist/js/tooltipster.main.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 @@ -44,5 +44,5 @@
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"version": "4.2.2"
"version": "4.2.3"
}
2 changes: 0 additions & 2 deletions src/js/plugins/tooltipster/sideTip/tooltipster-sideTip.js
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,6 @@ $.tooltipster._plugin({

if (self.__options.functionPosition) {


var result = self.__options.functionPosition.call(self, self.__instance, helper, finalResultClone);

if (result) finalResult = result;
Expand All @@ -728,7 +727,6 @@ $.tooltipster._plugin({
// use for it during the position event, now it's over)
ruler.destroy();


// compute the position of the target relatively to the tooltip root
// element so we can place the arrow and make the needed adjustments
var arrowCoord,
Expand Down

0 comments on commit 99ed4fb

Please sign in to comment.