Skip to content

Commit c6f2890

Browse files
committedJan 16, 2016
Bump 0.4.1
1 parent f942a11 commit c6f2890

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎lib/utils.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -231,12 +231,12 @@ function adjust(tooltip, props) {
231231
var within = props.within;
232232
var place = props.place;
233233

234-
if (auto && typeof place === 'string') {
234+
if (typeof place === 'string') {
235235
place = place.split(',').map(function (p) {
236236
return p.trim();
237237
});
238238
}
239-
if (place.length === 1) {
239+
if (auto && place.length === 1) {
240240
place.push(opposite(place));
241241
}
242242

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "redux-tooltip",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "A tooltip React component for Redux",
55
"main": "./lib/index.js",
66
"repository": {

0 commit comments

Comments
 (0)
Please sign in to comment.