From f72998ced794a03844dc1d0f6b14ca0a2401a61d Mon Sep 17 00:00:00 2001 From: Scott Elwood Date: Thu, 26 Oct 2017 17:42:24 -0700 Subject: [PATCH] Fix popover default alwaysOpen to false --- dist/popover.js | 2 +- src/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/popover.js b/dist/popover.js index 582fff39..bef14fcf 100644 --- a/dist/popover.js +++ b/dist/popover.js @@ -284,7 +284,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } var defaults = { - alwaysOpen: true, + alwaysOpen: false, classPrefix: 'popoverjs', showDelay: 0, hideDelay: 0, diff --git a/src/index.js b/src/index.js index 43e4119e..ed2f73f9 100644 --- a/src/index.js +++ b/src/index.js @@ -8,7 +8,7 @@ import { error, generateOptionClassnames } from './utils'; import './styles/_main.scss'; const defaults = { - alwaysOpen: true, + alwaysOpen: false, classPrefix: 'popoverjs', showDelay: 0, hideDelay: 0,