Files @ e975e1d41059
Branch filter:

Location: kallithea/rhodecode/templates/base/flash_msg.html

Bradley M. Kuhn
rhodecode.js: workaround missing unknown autocomplete textboxKeyUpEvent

It was introduced in the YUI update in 5143b8df576c and used for @mention handling.
<div class="flash_msg">
    <% messages = h.flash.pop_messages() %>
    % if messages:
        % for message in messages:
            <div class="alert alert-dismissable alert-${message.category}">
              <button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
              ${message}
            </div>
        % endfor
    % endif
    <script>
    if (typeof jQuery != 'undefined') {
        $(".alert").alert();
    }
    </script>
</div>