Bootstrap-responsive navbar dropdown-reagiert nicht auf touch

Ich bin mit Twitter Bootstrap 2.3.2 der Aufbau einer responsive Website. Ich habe eine Navigationsleiste mit dropdown-Menüs:

<div class="nav-collapse collapse">
    <ul class="nav">
        <li  {% if request.get_full_path = "/" %} class="active" {% endif %} ><a href="/">Home</a></li>

        <li id="fat-menu" class="dropdown" id="about"
        {% if request.get_full_path = "/about/" %} class="active" {% endif %}>
        <a href="/about/" role="button" class="dropdown-toggle" data-toggle="dropdown">About
            <b class="caret"></b>
        </a>
        <ul class="dropdown-menu" role="menu" aria-labelledby="about">
            <li role="presentation" class="divider"></li>
            <li role="presentation">
                <a role="menuitem" tabindex="-1" href="/news/"></a>
            </li>
        </ul>
    </li>
</ul>
</div>

Auf einem desktop-browser, das drop-down reagiert auf einen Klick, auch wenn das Fenster in der Größe geändert wird, um zu zeigen, die mobile Ansicht. Wenn ich mit meinem Nexus 4 mit Chrome & Dolphin-Browser, das drop-down-links funktionieren nicht. Caret-Taste funktioniert, wenn ich auf eine dropdown verknüpfen, dropdown Menü fährt ein und ich bin nicht umgeleitet. Ich habe nicht versucht, anderen mobilen Geräten jedoch.

Ist das ein bekanntes Problem?

InformationsquelleAutor CodeOcelot | 2013-08-21
Schreibe einen Kommentar