Arrow not showing

Issue #6 resolved
Former user created an issue

Hi I'm Timon, I'm a ICT student and I'm the responsive calendar in one of my projects. I first want to say that it's a very nice feature and I love using it! But I use the latest version of bootstrap (version 3) for a mobile application.

The 2 arrows to browse the months are not showing.

Comments (4)

  1. Lukasz Kokoszkiewicz repo owner

    Hi, I wouldn't say that it's a problem with the calendar. Bootstrap 3 introduced slightly new way of using buttons so if you update to bootstrap 3 buttons it will work:

    <a class="pull-left" data-go="prev"><div class="btn btn-primary"><span class="glyphicon glyphicon-chevron-left"></span></div></a>
    <h4 class="timeInfo"></h4>
    <a class="pull-right" data-go="next"><div class="btn btn-primary"><span class="glyphicon glyphicon-chevron-right"></span></div></a>
    

    In bootstrap 3 it's not enough to use 'btn' class to draw a button, you have to put the button type: 'btn btn-primary'. In addition the use of glyphicons changed.

    Anyway, I will have to update this in a responsive-calendar package.

  2. Log in to comment