Skip to content

Commit

Permalink
Fix popover default alwaysOpen to false
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Elwood authored and Scott Elwood committed Oct 27, 2017
1 parent 674dece commit f72998c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/popover.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit f72998c

Please sign in to comment.