Skip to content

Commit f818f58

Browse files
committed
version bump
1 parent b3b72ce commit f818f58

File tree

8 files changed

+29
-33
lines changed

8 files changed

+29
-33
lines changed

dist/css/tooltipster.bundle.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@
229229
.tooltipster-update-scale {
230230
animation: tooltipster-scaling 600ms;
231231
}
232-
232+
233233
/**
234234
* DEFAULT STYLE OF THE SIDETIP PLUGIN
235235
*

dist/js/plugins/tooltipster/SVG/tooltipster-SVG.js

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,32 @@
11
(function (root, factory) {
2-
if (root === undefined && window !== undefined) root = window;
32
if (typeof define === 'function' && define.amd) {
43
// AMD. Register as an anonymous module unless amdModuleId is set
54
define(["tooltipster"], function (a0) {
65
return (factory(a0));
76
});
8-
} else if (typeof module === 'object' && module.exports) {
7+
} else if (typeof exports === 'object') {
98
// Node. Does not work with strict CommonJS, but
109
// only CommonJS-like environments that support module.exports,
1110
// like Node.
1211
module.exports = factory(require("tooltipster"));
1312
} else {
14-
factory(root["jQuery"]);
13+
factory(jQuery);
1514
}
1615
}(this, function ($) {
1716

1817
(function (root, factory) {
19-
if (root === undefined && window !== undefined) root = window;
2018
if (typeof define === 'function' && define.amd) {
2119
// AMD. Register as an anonymous module unless amdModuleId is set
2220
define(["jquery"], function (a0) {
2321
return (factory(a0));
2422
});
25-
} else if (typeof module === 'object' && module.exports) {
23+
} else if (typeof exports === 'object') {
2624
// Node. Does not work with strict CommonJS, but
2725
// only CommonJS-like environments that support module.exports,
2826
// like Node.
2927
module.exports = factory(require("jquery"));
3028
} else {
31-
factory(root["jQuery"]);
29+
factory(jQuery);
3230
}
3331
}(this, function ($) {
3432

dist/js/plugins/tooltipster/SVG/tooltipster-SVG.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/tooltipster.bundle.js

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,22 @@
1-
/**
2-
* tooltipster http://iamceege.github.io/tooltipster/
3-
* A rockin' custom tooltip jQuery plugin
4-
* Developed by Caleb Jacob and Louis Ameline
5-
* MIT license
6-
*/
1+
/**
2+
* tooltipster http://iamceege.github.io/tooltipster/
3+
* A rockin' custom tooltip jQuery plugin
4+
* Developed by Caleb Jacob and Louis Ameline
5+
* MIT license
6+
*/
77
(function (root, factory) {
8-
if (root === undefined && window !== undefined) root = window;
98
if (typeof define === 'function' && define.amd) {
109
// AMD. Register as an anonymous module unless amdModuleId is set
1110
define(["jquery"], function (a0) {
1211
return (factory(a0));
1312
});
14-
} else if (typeof module === 'object' && module.exports) {
13+
} else if (typeof exports === 'object') {
1514
// Node. Does not work with strict CommonJS, but
1615
// only CommonJS-like environments that support module.exports,
1716
// like Node.
1817
module.exports = factory(require("jquery"));
1918
} else {
20-
factory(root["jQuery"]);
19+
factory(jQuery);
2120
}
2221
}(this, function ($) {
2322

@@ -90,7 +89,7 @@ var defaults = {
9089
hasTransitions: transitionSupport(),
9190
IE: false,
9291
// don't set manually, it will be updated by a build task after the manifest
93-
semVer: '4.2.6',
92+
semVer: '4.2.7',
9493
window: win
9594
},
9695
core = function() {
@@ -3341,7 +3340,7 @@ function transitionSupport() {
33413340

33423341
// we'll return jQuery for plugins not to have to declare it as a dependency,
33433342
// but it's done by a build task since it should be included only once at the
3344-
// end when we concatenate the main file with a plugin
3343+
// end when we concatenate the main file with a plugin
33453344
// sideTip is Tooltipster's default plugin.
33463345
// This file will be UMDified by a build task.
33473346

dist/js/tooltipster.bundle.min.js

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

dist/js/tooltipster.main.js

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,22 @@
1-
/**
2-
* tooltipster http://iamceege.github.io/tooltipster/
3-
* A rockin' custom tooltip jQuery plugin
4-
* Developed by Caleb Jacob and Louis Ameline
5-
* MIT license
6-
*/
1+
/**
2+
* tooltipster http://iamceege.github.io/tooltipster/
3+
* A rockin' custom tooltip jQuery plugin
4+
* Developed by Caleb Jacob and Louis Ameline
5+
* MIT license
6+
*/
77
(function (root, factory) {
8-
if (root === undefined && window !== undefined) root = window;
98
if (typeof define === 'function' && define.amd) {
109
// AMD. Register as an anonymous module unless amdModuleId is set
1110
define(["jquery"], function (a0) {
1211
return (factory(a0));
1312
});
14-
} else if (typeof module === 'object' && module.exports) {
13+
} else if (typeof exports === 'object') {
1514
// Node. Does not work with strict CommonJS, but
1615
// only CommonJS-like environments that support module.exports,
1716
// like Node.
1817
module.exports = factory(require("jquery"));
1918
} else {
20-
factory(root["jQuery"]);
19+
factory(jQuery);
2120
}
2221
}(this, function ($) {
2322

@@ -90,7 +89,7 @@ var defaults = {
9089
hasTransitions: transitionSupport(),
9190
IE: false,
9291
// don't set manually, it will be updated by a build task after the manifest
93-
semVer: '4.2.6',
92+
semVer: '4.2.7',
9493
window: win
9594
},
9695
core = function() {

dist/js/tooltipster.main.min.js

Lines changed: 1 addition & 1 deletion
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
@@ -44,5 +44,5 @@
4444
"scripts": {
4545
"test": "echo \"Error: no test specified\" && exit 1"
4646
},
47-
"version": "4.2.6"
47+
"version": "4.2.7"
4848
}

0 commit comments

Comments
 (0)