Skip to content

Commit

Permalink
Merge pull request #121 from inglkruiz/tooltip-fix
Browse files Browse the repository at this point in the history
Fix Variable declarations DATA API
Thanks
  • Loading branch information
thednp authored Mar 18, 2017
2 parents e5f1614 + 121ac28 commit 2caed54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/V3/tooltip-native.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ var Tooltip = function( element,options ) {
element = queryElement(element);

// DATA API
var animationData = element[getAttribute](dataAnimation);
placementData = element[getAttribute](dataPlacement);
var animationData = element[getAttribute](dataAnimation),
placementData = element[getAttribute](dataPlacement),
delayData = element[getAttribute](dataDelay),
containerData = element[getAttribute](dataContainer),

Expand Down

0 comments on commit 2caed54

Please sign in to comment.