Skip to content

Commit

Permalink
Addressing #233 (comment)
Browse files Browse the repository at this point in the history
@jcorporation please test latest master. Thanks
  • Loading branch information
thednp committed Jul 12, 2019
1 parent 44f47f4 commit 7ff6c03
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions dist/bootstrap-native-v4.js
Original file line number Diff line number Diff line change
Expand Up @@ -1202,7 +1202,7 @@

clearTimeout(modalTimer);
modalTimer = setTimeout(function(){
modal[isAnimating] = true;
modal[isAnimating] = true;
bootstrapCustomEvent.call(modal, showEvent, component, relatedTarget);

// we elegantly hide any opened modal
Expand Down Expand Up @@ -1360,7 +1360,7 @@
titleString = options.title || element[getAttribute](dataTitle);
contentString = options.content || element[getAttribute](dataContent);
// fixing https://github.com/thednp/bootstrap.native/issues/233
contentString = contentString.trim();
contentString = !!contentString ? contentString.trim() : null;

popover = DOC[createElement](div);

Expand Down
Loading

0 comments on commit 7ff6c03

Please sign in to comment.