Skip to content

Commit

Permalink
Merge pull request thednp#124 from Fire7/v3_carousel_indicators_fix
Browse files Browse the repository at this point in the history
V3 carousel indicators fix
  • Loading branch information
thednp authored Mar 23, 2017
2 parents a1db60b + 783ec80 commit 1595bcb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/bootstrap-native.js
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@
controls = getElementsByClassName(element,component+'-control'),
leftArrow = controls[0], rightArrow = controls[1],
indicator = queryElement( '.'+component+'-indicators', element ),
indicators = indicator[getElementsByTagName]( "LI" );
indicators = indicator && indicator[getElementsByTagName]( "LI" ) || [];

// handlers
var pauseHandler = function () {
Expand Down
Loading

0 comments on commit 1595bcb

Please sign in to comment.